.icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
    vertical-align: -0.125em;
    flex-shrink: 0;
}

:root {
    --primary-color: #8B5CF6;
    --primary-dark: #7C3AED;
    --secondary-color: #F59E0B;
    --accent-color: #EF4444;
    --dark-bg: #0F0F23;
    --dark-surface: #1A1A2E;
    --dark-card: #16213E;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --purple-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background: rgba(3, 3, 3, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.mobile-header-cta {
    display: none;
}

.logo {
    height: 40px;
    width: auto;
}

.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.cta-button,
.btn-primary {
    background: linear-gradient(135deg, #373d7d 0%, #353b7a 33%, #2f346a 66%, #2b3060 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(55, 61, 125, 0.4);
    border: none;
    display: inline-block;
}

.cta-button:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(55, 61, 125, 0.6);
    color: white;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    visibility: hidden;
    z-index: 999;
}

.mobile-menu-overlay.active {
    visibility: visible;
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    padding: 20px;
}

.mobile-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 15px 0;
    display: block;
    border-bottom: 1px solid var(--glass-border);
    font-weight: 500;
}

.mobile-cta-button {
    background: var(--purple-gradient);
    color: white;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    text-align: center;
    margin-top: 20px;
}

.main-content {
    padding-top: 80px;
}

.footer-info {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-info-col h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.footer-info-col p {
    margin: 0 0 8px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.footer-info-col a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-info-col a:hover {
    color: #fff;
}

.footer-age-badge {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-info-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-info {
        margin-top: 28px;
        padding-top: 24px;
    }
}
