body { margin: 0; font-family: 'Arial', sans-serif; color: #f0f0f0; background-color: #121212; line-height: 1.6; padding-top: 100px; } a { text-decoration: none; color: inherit; } ul { list-style: none; padding: 0; margin: 0; } .site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); background-color: transparent; } .header-desktop { display: block; } .header-top { background-color: #0A2240; padding: 10px 0; } .header-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; } .logo { font-size: 28px; font-weight: bold; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; padding: 5px 0; } .desktop-nav-buttons { display: flex; gap: 12px; } .btn { padding: 10px 20px; border-radius: 5px; font-weight: bold; cursor: pointer; transition: all 0.3s ease; text-decoration: none; white-space: nowrap; } .btn-register { background-color: #FFD700; color: #0A2240; border: 2px solid #FFD700; } .btn-register:hover { background-color: #e6c200; color: #0A2240; } .btn-login { background-color: transparent; color: #FFD700; border: 2px solid #FFD700; } .btn-login:hover { background-color: #FFD700; color: #0A2240; } .main-nav { background-color: #1A3D60; padding: 10px 0; display: flex; justify-content: center; } .nav-container { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 25px; padding: 0 20px; } .nav-link { color: #f0f0f0; font-size: 16px; font-weight: 500; padding: 8px 0; position: relative; transition: color 0.3s ease; white-space: nowrap; } .nav-link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background-color: #FFD700; transform: scaleX(0); transition: transform 0.3s ease; } .nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); } .nav-link:hover, .nav-link.active { color: #FFD700; } .header-mobile { display: none; background-color: #0A2240; padding-bottom: 10px; } .mobile-top-bar { display: flex; justify-content: space-between; align-items: center; padding: 10px 15px; background-color: #0A2240; } .hamburger-menu { background: none; border: none; cursor: pointer; padding: 10px; position: relative; z-index: 1002; width: 30px; height: 24px; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.3s ease; } .hamburger-menu::before, .hamburger-menu::after, .hamburger-menu span { content: ''; display: block; width: 100%; height: 3px; background-color: #FFD700; border-radius: 2px; transition: all 0.3s ease; } .hamburger-menu.active span { opacity: 0; } .hamburger-menu.active::before { transform: translateY(10.5px) rotate(45deg); } .hamburger-menu.active::after { transform: translateY(-10.5px) rotate(-45deg); } .logo-mobile { font-size: 26px; font-weight: bold; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; flex-grow: 1; text-align: center; padding: 5px 0; } .mobile-top-spacer { width: 30px; flex-shrink: 0; } .mobile-buttons-area { display: flex; justify-content: center; gap: 10px; padding: 10px 15px; background-color: #0A2240; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); } .mobile-nav-menu { display: none; flex-direction: column; position: fixed; top: 0; left: 0; width: 70%; height: 100vh; background-color: #1A3D60; box-shadow: 2px 0 10px rgba(0, 0, 0, 0.4); transform: translateX(-100%); transition: transform 0.3s ease-out; padding: 20px; overflow-y: auto; z-index: 1001; } .mobile-nav-menu.active { display: flex; transform: translateX(0); } .mobile-nav-menu .nav-link { color: #f0f0f0; font-size: 18px; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); width: 100%; } .mobile-nav-menu .nav-link:last-child { border-bottom: none; } .mobile-nav-menu .nav-link:hover { color: #FFD700; } .mobile-menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); z-index: 999; opacity: 0; transition: opacity 0.3s ease-out; } .mobile-menu-overlay.active { display: block; opacity: 1; } .site-footer { background-color: #0A2240; color: #f0f0f0; padding: 40px 20px 20px; font-size: 14px; line-height: 1.8; } .footer-container { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; } .footer-section { flex: 1; min-width: 250px; margin-bottom: 20px; } .footer-section h3 { color: #FFD700; font-size: 18px; margin-bottom: 15px; text-transform: uppercase; } .footer-section p, .footer-section a { color: #c0c0c0; transition: color 0.3s ease; } .footer-section a:hover { color: #FFD700; } .footer-section ul { list-style: none; padding: 0; } .footer-section ul li { margin-bottom: 8px; } .footer-bottom { max-width: 1200px; margin: 30px auto 0; text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #c0c0c0; } @media (max-width: 768px) { .header-desktop { display: none; } .header-mobile { display: block; } .header-container, .nav-container, .footer-container, .footer-bottom { max-width: none; width: 100%; padding-left: 15px; padding-right: 15px; } .site-header { box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); } .footer-container { flex-direction: column; align-items: flex-start; } .footer-section { min-width: unset; width: 100%; } } body.no-scroll { overflow: hidden; }