 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }
 
 body {
     font-family: "Segoe UI", Arial, sans-serif;
     background: #000;
     color: #ffeb3b;
 }
 
 .container {
     width: 90%;
     max-width: 1100px;
     margin: 0 auto;
 }
 
 header {
     background: #000;
     color: #ffeb3b;
     padding: 16px 0;
 }
 
 .navbar {
     display: flex;
     align-items: center;
     justify-content: space-between;
 }
 
 .logo {
     font-size: 2rem;
     font-weight: bold;
     letter-spacing: 2px;
     color: #ffeb3b;
 }
 
 nav a {
     color: #ffeb3b;
     text-decoration: none;
     margin-left: 25px;
     font-size: 1rem;
     transition: color 0.2s;
 }
 
 nav a:hover {
     color: #ffd600;
 }
 /* Join Form Styles */
 
 .join-section {
     padding: 55px 0 40px 0;
     background: linear-gradient(rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.92)), url('unnamed (5).webp') center/cover no-repeat;
     min-height: 100vh;
 }
 
 .join-title {
     text-align: center;
     color: #ffd600;
     font-size: 2.1rem;
     margin-bottom: 38px;
     letter-spacing: 2px;
     font-weight: 700;
 }
 
 .join-title span {
     color: #ffeb3b;
 }
 
 .join-form {
     background: #181818ed;
     padding: 35px 25px 26px 25px;
     border-radius: 16px;
     box-shadow: 0 2px 14px rgba(255, 235, 59, 0.09);
     max-width: 420px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
 }
 
 .form-group {
     margin-bottom: 16px;
 }
 
 .join-form label {
     display: block;
     color: #ffd600;
     font-size: 0.97rem;
     margin-bottom: 4px;
     font-weight: 500;
 }
 
 .join-form input,
 .join-form select,
 .join-form textarea {
     width: 100%;
     padding: 10px 12px;
     background: #1e1e1e;
     color: #ffeb3b;
     border: 1.5px solid #ffd600;
     border-radius: 6px;
     font-size: 1rem;
     outline: none;
     font-family: inherit;
     margin-bottom: 2px;
 }
 
 .join-form input:focus,
 .join-form select:focus,
 .join-form textarea:focus {
     border-color: #ffeb3b;
 }
 
 .join-form textarea {
     resize: vertical;
 }
 
 .btn-join {
     background: #ffd600;
     color: #181818;
     border: none;
     padding: 15px 28px;
     border-radius: 25px;
     font-size: 1.08rem;
     font-weight: bold;
     cursor: pointer;
     transition: background 0.18s, color 0.18s;
     margin-top: 15px;
 }
 
 .btn-join:hover {
     background: #ffeb3b;
     color: #000;
 }
 /* Footer style */
 
 footer {
     background: #000;
     color: #ffeb3b;
     text-align: center;
     padding: 16px 0;
     margin-top: 35px;
     font-size: .9rem;
 }
 /* Responsive */
 
 @media (max-width: 900px) {
     .navbar {
         flex-direction: column;
         align-items: flex-start;
     }
     nav {
         margin-top: 10px;
         width: 100%;
     }
     nav a {
         display: inline-block;
         margin: 10px 10px 0 0;
     }
     .join-title {
         font-size: 1.3rem;
     }
     .join-section {
         padding: 25px 0 18px 0;
     }
 }