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

:root {
    --midnight-dark: #0a0f1a;
    --midnight-base: #111827;
    --midnight-light: #1a2332;
    --charcoal: #1f2937;
    --charcoal-light: #2d3748;
    --navy-dark: #0d1117;
    --navy-base: #161b22;
    --navy-light: #21262d;
    
    --accent-primary: #10b981;
    --accent-secondary: #06b6d4;
    --accent-tertiary: #f59e0b;
    --accent-glow: rgba(16, 185, 129, 0.5);
    --accent-glow-strong: rgba(6, 182, 212, 0.6);
    --accent-glow-amber: rgba(245, 158, 11, 0.5);
    
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-tertiary: #9ca3af;
    --text-muted: #6b7280;
    
    --bg-gradient-1: linear-gradient(135deg, #0a0f1a 0%, #111827 50%, #1a2332 100%);
    --bg-gradient-2: linear-gradient(180deg, #0d1117 0%, #161b22 100%);
    --bg-gradient-card: linear-gradient(145deg, #1a2332 0%, #1f2937 100%);
    --bg-gradient-card-hover: linear-gradient(145deg, #1f2937 0%, #2d3748 100%);
    
    --shadow-glow-emerald: 0 0 40px rgba(16, 185, 129, 0.4);
    --shadow-glow-teal: 0 0 40px rgba(6, 182, 212, 0.4);
    --shadow-glow-amber: 0 0 40px rgba(245, 158, 11, 0.4);
    --shadow-card: 0 12px 50px rgba(0, 0, 0, 0.6);
    --shadow-card-hover: 0 24px 80px rgba(16, 185, 129, 0.3);
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--midnight-dark);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body:has(.cookie-banner:not([style*="display: none"])) {
    padding-bottom: 180px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    border-top: 2px solid var(--accent-primary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: 2px solid var(--navy-light);
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    font-family: 'Roboto', sans-serif;
}

.cookie-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.cookie-btn.accept:hover {
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6);
    transform: translateY(-2px);
}

.cookie-btn.reject {
    border-color: #ef4444;
    color: #ef4444;
}

.cookie-btn.reject:hover {
    background: #ef4444;
    color: var(--text-primary);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

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

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 36px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    padding: 140px 24px 120px;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-gradient-1);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 40%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 25s ease-in-out infinite;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-primary), transparent);
    top: -300px;
    left: -200px;
    animation-delay: 0s;
}

.hero-glow-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--accent-secondary), transparent);
    bottom: -350px;
    right: -250px;
    animation-delay: 8s;
}

.hero-glow-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-tertiary), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 16s;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(16, 185, 129, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(6, 182, 212, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(245, 158, 11, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(16, 185, 129, 0.2), transparent);
    background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px;
    animation: particles 20s linear infinite;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(60px, -60px) scale(1.15);
    }
    66% {
        transform: translate(-40px, 40px) scale(0.9);
    }
}

@keyframes particles {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 50px;
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.badge-icon {
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 36px;
    letter-spacing: -3px;
}

.hero-title-line-1 {
    display: block;
    color: var(--text-primary);
    text-shadow: 0 0 40px rgba(16, 185, 129, 0.6);
}

.hero-title-line-2 {
    display: block;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
}

.hero-title-line-3 {
    display: block;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 22px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 56px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 70px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

.centerpiece-section {
    padding: 80px 24px;
    background: var(--midnight-base);
    position: relative;
    overflow: hidden;
}

.centerpiece-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.centerpiece-visual {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.centerpiece-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3), rgba(6, 182, 212, 0.2), transparent);
    filter: blur(60px);
    animation: centerpiecePulse 4s ease-in-out infinite;
}

@keyframes centerpiecePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.9;
    }
}

.centerpiece-icon {
    position: relative;
    z-index: 1;
    width: 200px;
    height: 200px;
    transition: transform 0.1s linear;
}

.centerpiece-icon svg {
    width: 100%;
    height: 100%;
}

.offers-section {
    padding: 120px 24px;
    background: var(--midnight-dark);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-tertiary);
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.offer-card {
    background: var(--bg-gradient-card);
    border: 2px solid rgba(16, 185, 129, 0.25);
    border-radius: 24px;
    padding: 0;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(6, 182, 212, 0.08));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: var(--shadow-card-hover), var(--shadow-glow-emerald);
}

.offer-card.featured {
    border-color: rgba(16, 185, 129, 0.5);
    border-width: 3px;
    box-shadow: var(--shadow-card), var(--shadow-glow-emerald);
}

.offer-card.featured::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(15px);
}

.card-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.offer-card:hover .card-glow-effect {
    opacity: 1;
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
    font-family: 'Montserrat', sans-serif;
}

.card-content {
    padding: 32px 20px 24px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.operator-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

.operator-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px;
    backdrop-filter: blur(10px);
}

.operator-logo-img {
    max-width: 140px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.rating-display {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.rating-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.stars {
    display: flex;
    gap: 5px;
    align-items: center;
}

.star {
    color: #fbbf24;
    font-size: 18px;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
}

.star.half {
    background: linear-gradient(90deg, #fbbf24 50%, rgba(251, 191, 36, 0.3) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-label {
    font-size: 11px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.bonus-section {
    padding: 16px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    text-align: center;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.bonus-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-primary);
    font-weight: 800;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.bonus-description {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.bonus-description strong {
    color: var(--accent-primary);
    font-weight: 900;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-feature {
    font-size: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Roboto', sans-serif;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    border: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.7);
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
}

.cta-button svg {
    transition: transform 0.4s ease;
}

.cta-button:hover svg {
    transform: translateX(6px);
}

.info-section {
    padding: 80px 24px;
    background: var(--midnight-base);
    position: relative;
}

.info-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.9;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.contact-section {
    padding: 120px 24px;
    background: var(--midnight-dark);
    position: relative;
    min-height: 80vh;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    text-align: center;
}

.contact-intro {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.contact-form {
    background: var(--bg-gradient-card);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-tertiary);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    margin-top: 32px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-primary);
    flex-shrink: 0;
}

.form-link {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-link:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
    margin-top: 20px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.7);
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
}

.form-submit:active {
    transform: translateY(-1px);
}

.form-success {
    background: var(--bg-gradient-card);
    border: 2px solid var(--accent-primary);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--text-primary);
    font-weight: 900;
}

.form-success h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.form-success p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
}

.about-section {
    padding: 120px 24px;
    background: var(--midnight-dark);
    position: relative;
    min-height: 80vh;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    text-align: center;
}

.about-intro {
    margin-bottom: 50px;
}

.about-intro p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.about-block {
    margin-bottom: 50px;
    padding: 40px;
    background: var(--bg-gradient-card);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.about-block:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
}

.about-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-block p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.about-block p strong {
    color: var(--accent-primary);
    font-weight: 700;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.about-list li {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
}

.about-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 18px;
}

.about-list li strong {
    color: var(--text-primary);
    font-weight: 700;
}

.about-vision {
    font-size: 18px;
    font-style: italic;
    color: var(--accent-primary);
    text-align: center;
    margin-top: 30px;
    padding: 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-family: 'Roboto', sans-serif;
}

.balanced-section {
    padding: 120px 24px;
    background: var(--midnight-dark);
    position: relative;
    min-height: 80vh;
}

.balanced-content {
    max-width: 900px;
    margin: 0 auto;
}

.balanced-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    text-align: center;
}

.balanced-intro {
    margin-bottom: 50px;
}

.balanced-intro p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.balanced-block {
    margin-bottom: 40px;
    padding: 40px;
    background: var(--bg-gradient-card);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.balanced-block:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
}

.balanced-block.highlight {
    border-color: rgba(16, 185, 129, 0.4);
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(6, 182, 212, 0.05));
}

.balanced-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.balanced-icon {
    font-size: 32px;
    line-height: 1;
}

.balanced-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.balanced-block p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.balanced-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.balanced-list li {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
}

.balanced-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 18px;
}

.help-resources {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.help-resource {
    padding: 24px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.help-resource-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.help-resource-contact {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
}

.help-resource-note {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
}

.help-resource-link {
    font-size: 15px;
    color: var(--text-secondary);
    font-family: 'Roboto', sans-serif;
}

.help-resource-link a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.help-resource-link a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.terms-section {
    padding: 120px 24px;
    background: var(--midnight-dark);
    position: relative;
    min-height: 80vh;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    text-align: center;
}

.terms-intro {
    margin-bottom: 50px;
}

.terms-intro p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.terms-article {
    margin-bottom: 40px;
    padding: 40px;
    background: var(--bg-gradient-card);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    gap: 24px;
}

.terms-article:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
}

.terms-article-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-primary);
    margin: 0;
    flex-shrink: 0;
    width: 50px;
    line-height: 1;
}

.terms-article-content {
    flex: 1;
}

.terms-article-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-article p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 16px;
    font-family: 'Roboto', sans-serif;
}

.terms-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.terms-list li {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
}

.terms-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 18px;
}

.privacy-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.privacy-subsection-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 16px;
}

.privacy-contact-info {
    margin-top: 16px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-family: 'Roboto', sans-serif;
}

.privacy-contact-info strong {
    color: var(--text-primary);
    font-weight: 700;
}

.privacy-link {
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.privacy-link:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.features-section {
    padding: 120px 24px;
    background: var(--midnight-dark);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-gradient-card);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 24px;
    padding: 48px 36px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 24px 80px rgba(16, 185, 129, 0.25);
}

.feature-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 25px rgba(16, 185, 129, 0.5));
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3), transparent);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover .feature-icon-glow {
    opacity: 1;
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1.3;
}

.feature-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
}

.footer {
    background: var(--navy-dark);
    color: var(--text-secondary);
    padding: 90px 24px 50px;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-secondary), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 56px;
    margin-bottom: 64px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-text {
    font-size: 15px;
    color: var(--text-tertiary);
    line-height: 1.9;
    font-family: 'Roboto', sans-serif;
}

.footer-list {
    list-style: none;
    padding-left: 0;
    margin: 14px 0;
}

.footer-list li {
    font-size: 15px;
    color: var(--text-tertiary);
    line-height: 1.9;
    padding-left: 22px;
    position: relative;
    margin-bottom: 8px;
    font-family: 'Roboto', sans-serif;
}

.footer-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

.age-warning {
    margin-top: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.help-center {
    margin-bottom: 28px;
}

.help-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.help-contact {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
}

.help-hours {
    font-size: 14px;
    color: var(--text-tertiary);
    font-family: 'Roboto', sans-serif;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 56px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 40px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
    filter: grayscale(0.3);
}

.footer-logo-link:hover {
    opacity: 1;
    transform: scale(1.15);
    filter: grayscale(0);
}

.footer-logo-img {
    max-height: 65px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-logo.age-18 {
    font-size: 28px;
    font-weight: 900;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
    border: 3px solid #ef4444;
    width: 72px;
    height: 72px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-link {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

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

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-column .footer-link {
    font-size: 15px;
    padding: 8px 0;
}

.footer-copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-family: 'Roboto', sans-serif;
}

@media (max-width: 1400px) {
    .offers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .nav {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero {
        padding: 100px 24px 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-stats {
        gap: 50px;
    }

    .hero-stat-number {
        font-size: 42px;
    }

    .section-title {
        font-size: 42px;
    }

    .offers-section,
    .features-section,
    .about-section,
    .contact-section,
    .balanced-section,
    .terms-section {
        padding: 80px 24px;
    }
    
    .about-title,
    .contact-title,
    .balanced-title,
    .terms-title {
        font-size: 42px;
    }
    
    .about-block,
    .balanced-block,
    .terms-article {
        padding: 32px 24px;
    }
    
    .about-subtitle,
    .balanced-subtitle {
        font-size: 24px;
    }
    
    .terms-article-title {
        font-size: 20px;
    }
    
    .contact-form {
        padding: 36px 28px;
    }
    
    .balanced-icon {
        font-size: 28px;
    }
    
    .terms-article {
        flex-direction: column;
        gap: 16px;
    }
    
    .terms-article-number {
        font-size: 28px;
        width: auto;
    }

    .offers-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-banner {
        padding: 20px 16px;
    }
    
    .cookie-content {
        gap: 16px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }

    .centerpiece-visual {
        width: 250px;
        height: 250px;
    }

    .centerpiece-icon {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-container {
        padding: 0 16px;
    }

    .hero {
        padding: 80px 16px 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-stats {
        gap: 40px;
    }

    .hero-stat-number {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .offers-section,
    .features-section,
    .about-section,
    .contact-section,
    .balanced-section,
    .terms-section {
        padding: 60px 16px;
    }
    
    .about-title,
    .contact-title,
    .balanced-title,
    .terms-title {
        font-size: 32px;
    }
    
    .about-block,
    .balanced-block,
    .terms-article {
        padding: 24px 20px;
    }
    
    .about-subtitle,
    .balanced-subtitle {
        font-size: 20px;
    }
    
    .terms-article-title {
        font-size: 18px;
    }
    
    .about-intro p,
    .about-block p,
    .contact-intro,
    .balanced-intro p,
    .balanced-block p,
    .terms-intro p,
    .terms-article p {
        font-size: 15px;
    }
    
    .about-list li,
    .balanced-list li,
    .terms-list li {
        font-size: 15px;
    }
    
    .terms-article {
        flex-direction: column;
        gap: 12px;
    }
    
    .terms-article-number {
        font-size: 24px;
        width: auto;
    }
    
    .privacy-subtitle {
        font-size: 20px;
    }
    
    .privacy-subsection-title {
        font-size: 16px;
    }
    
    .privacy-contact-info {
        padding: 16px;
        font-size: 15px;
    }
    
    .balanced-icon {
        font-size: 24px;
    }
    
    .balanced-block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .help-resource {
        padding: 20px;
    }
    
    .help-resource-title {
        font-size: 18px;
    }
    
    .help-resource-contact {
        font-size: 16px;
    }
    
    .contact-form {
        padding: 28px 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .form-submit {
        padding: 16px 28px;
        font-size: 15px;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .form-success {
        padding: 36px 24px;
    }
    
    .form-success h3 {
        font-size: 24px;
    }

    .card-content {
        padding: 28px 18px 20px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .centerpiece-visual {
        width: 200px;
        height: 200px;
    }

    .centerpiece-icon {
        width: 120px;
        height: 120px;
    }
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

button:focus,
a:focus {
    outline: 3px solid var(--accent-primary);
    outline-offset: 4px;
    border-radius: 4px;
}
