/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --graphite: #1e3a5f;
    --graphite-light: #2d4f7c;
    --graphite-dark: #0f2438;
    --lavender-soft: #3b82f6;
    --lavender-muted: #60a5fa;
    --lavender-light: #93c5fd;
    --bg-cream: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.75;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 0;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 3px solid var(--accent);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 24px;
}

.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-dark);
    margin-bottom: 8px;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: 1.5px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 24px;
}

.cookie-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cookie-btn.accept {
    background: var(--accent);
    color: var(--bg-white);
    border-color: var(--accent);
}

.cookie-btn.accept:hover {
    background: var(--lavender-muted);
    border-color: var(--lavender-muted);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(154, 140, 195, 0.25);
}

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

.cookie-btn.reject:hover {
    background: #e74c3c;
    color: var(--bg-white);
}

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

/* Header */
.header {
    background: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.85;
}

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

.logo-icon {
    color: var(--accent);
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s ease;
}

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

/* Hero Section */
.hero {
    padding: 120px 24px 90px;
    background: linear-gradient(135deg, var(--graphite-dark) 0%, var(--graphite) 100%);
    margin-top: 0;
    position: relative;
    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: linear-gradient(135deg, rgba(154, 140, 195, 0.1) 0%, rgba(181, 168, 212, 0.05) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
}

.hero-glow-1 {
    width: 300px;
    height: 300px;
    background: var(--lavender-soft);
    top: -100px;
    right: 10%;
    animation: float 20s ease-in-out infinite;
}

.hero-glow-2 {
    width: 200px;
    height: 200px;
    background: var(--lavender-muted);
    bottom: -50px;
    left: 15%;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-glow-3 {
    width: 250px;
    height: 250px;
    background: var(--lavender-light);
    top: 50%;
    right: -50px;
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    color: var(--bg-white);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.badge-icon {
    font-size: 16px;
}

.hero-title-line-1,
.hero-title-line-2 {
    display: block;
}

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

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

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--bg-white);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.flag-icon {
    font-size: 32px;
    margin-right: 12px;
    vertical-align: middle;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.85;
    max-width: 800px;
    margin: 0 auto;
}

.hero-description strong {
    color: var(--bg-white);
    font-weight: 600;
}

/* Offers Section */
.offers-section {
    padding: 120px 24px;
    background: var(--bg-cream);
    position: relative;
}

.offers-section::before {
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    margin: 0 auto 60px;
    opacity: 0.3;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.35;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.offer-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border-color);
    border-radius: 24px;
    padding: 0;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.card-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(154, 140, 195, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(154, 140, 195, 0.18);
    border-color: var(--accent);
}

.offer-card.featured {
    border-color: var(--accent);
    border-width: 3px;
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--bg-white);
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 10;
    border-radius: 20px;
}

.card-content {
    padding: 56px 36px 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 1;
}

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

.operator-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}.operator-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    width: 100%;
    background: #f4f6f9;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.operator-logo-img {
    max-width: 160px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}



.operator-logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    text-align: center;
    margin-top: 8px;
}

.betclic {
    color: var(--accent);
}

.unibet {
    color: #00a859;
}

.bwin {
    color: #ff9800;
}

.netbet {
    color: #e64a19;
}

.rating-display {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

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

.star {
    color: #ff9800;
    font-size: 18px;
    line-height: 1;
}

.rating-bar {
    height: 8px;
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lavender-soft) 0%, var(--lavender-muted) 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.bonus-section {
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.bonus-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 6px;
}

.bonus-description {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--graphite);
    color: var(--bg-white);
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s ease;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(154, 140, 195, 0.35);
    border-color: var(--accent-light);
}

.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.payment-icon {
    width: 32px;
    height: 32px;
    color: var(--text-light);
    opacity: 0.7;
    transition: all 0.2s ease;
}

.payment-icon:hover {
    opacity: 1;
    color: var(--accent);
}

/* Features Section */
.features-section {
    padding: 120px 24px;
    background: var(--bg-cream);
    position: relative;
}

.features-section::before {
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    margin: 0 auto 60px;
    opacity: 0.3;
}

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

.feature-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(154, 140, 195, 0.15);
    border-color: var(--accent);
}

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

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

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

.feature-icon {
    color: var(--accent);
}

.feature-icon svg path,
.feature-icon svg circle,
.feature-icon svg rect {
    stroke: currentColor;
    transition: stroke 0.3s ease;
}

.feature-card:hover .feature-icon svg path,
.feature-card:hover .feature-icon svg circle,
.feature-card:hover .feature-icon svg rect {
    stroke: var(--lavender-soft);
}

.feature-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(154, 140, 195, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.feature-text {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.75;
}

/* Information Blocks */
.info-blocks-section {
    padding: 70px 24px;
    background: var(--bg-white);
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.info-block {
    display: flex;
    gap: 32px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border-color);
    max-width: 1100px;
    margin: 0 auto;
}

.info-block:last-child {
    border-bottom: none;
}

.info-icon {
    color: var(--accent);
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content {
    flex: 1;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.info-section {
    padding: 100px 24px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.info-section::before {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    margin: 0 auto 50px;
    opacity: 0.4;
}

.info-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        transparent 0px,
        transparent 8px,
        var(--border-color) 8px,
        var(--border-color) 12px
    );
    opacity: 0.6;
}

.info-text {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.85;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Visual Break - Numeric Typography */
.visual-break {
    padding: 90px 24px;
    background: var(--bg-cream);
    display: flex;
    justify-content: center;
    align-items: center;
}

.numeric-display {
    display: flex;
    gap: 24px;
    align-items: center;
}

.numeric-digit {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 700;
    color: var(--graphite);
    line-height: 1;
    opacity: 0.15;
    letter-spacing: -8px;
    position: relative;
}

.numeric-digit::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    opacity: 0.3;
}

/* Footer */
.footer {
    background: var(--graphite-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 100px 24px 40px;
    border-top: 2px solid var(--accent);
    position: relative;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    opacity: 0.5;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        var(--accent) 0px,
        var(--accent) 3px,
        transparent 3px,
        transparent 6px
    );
    opacity: 0.5;
}

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

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

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--lavender-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--lavender-light), transparent);
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

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

.footer-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.footer-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--lavender-light);
    font-weight: bold;
}

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

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

.help-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 6px;
}

.help-contact {
    font-size: 20px;
    font-weight: 700;
    color: var(--lavender-light);
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
}

.help-hours {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 36px;
}

.footer-logo {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.footer-logo:hover {
    border-color: var(--lavender-light);
    color: var(--lavender-light);
    background: rgba(154, 140, 195, 0.15);
}

.footer-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.9;
}

.footer-logo-link:hover {
    opacity: 1;
    transform: scale(1.05);
}

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

.footer-logo.trust {
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lavender-light);
    border-color: var(--lavender-light);
}

.footer-logo.age-18 {
    font-size: 22px;
    font-weight: 700;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
    width: 56px;
    height: 56px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
}

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

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.footer-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.footer-link:hover {
    color: var(--lavender-light);
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--lavender-light);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.footer-link:hover::before {
    left: 100%;
}

.footer-link::after {
    content: '→';
    position: absolute;
    right: 16px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    color: var(--lavender-light);
    font-size: 18px;
}

.footer-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        align-items: center;
        padding: 0 16px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 16px;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .hero {
        padding: 80px 24px 50px;
        margin-bottom: 100px;
    }

    .hero-title {
        font-size: 34px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .hero-stats {
        gap: 32px;
        margin-top: 40px;
    }
    
    .hero-stat-number {
        font-size: 36px;
    }

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

    .offers-section,
    .info-blocks-section,
    .features-section {
        padding: 80px 24px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 17px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .info-block {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto;
    }

    .numeric-digit {
        font-size: 80px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-links-column {
        gap: 10px;
    }
    
    .footer-link {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .footer-link:hover {
        transform: translateX(2px);
    }
    
    .cookie-banner {
        padding: 20px 16px;
    }
    
    .cookie-content {
        gap: 16px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

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

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

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

    .offers-section,
    .info-blocks-section,
    .features-section {
        padding: 60px 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .features-grid {
        gap: 28px;
    }

    .hero-title {
        font-size: 30px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .hero-stat-number {
        font-size: 32px;
    }
    
    .hero-stat-label {
        font-size: 13px;
    }

    .offer-card {
        border-radius: 12px;
    }

    .card-content {
        padding: 40px 20px 20px;
    }

    .operator-logo {
        font-size: 26px;
    }

    .numeric-digit {
        font-size: 60px;
        gap: 12px;
    }

    .info-title {
        font-size: 22px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

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

/* Focus States */
button:focus,
a:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* About Page Styles */
.about-section {
    padding: 100px 24px 80px;
    background: var(--bg-cream);
    min-height: calc(100vh - 200px);
}

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

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 36px;
    letter-spacing: -0.5px;
    text-align: center;
    line-height: 1.3;
}

.about-intro {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
}

.about-intro p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-block {
    margin-bottom: 48px;
    padding: 36px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-block:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.about-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 22px;
    letter-spacing: -0.3px;
    line-height: 1.35;
}

.about-block p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-block p strong {
    color: var(--text-dark);
    font-weight: 600;
}

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

.about-list li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

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

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

.about-vision {
    font-size: 19px;
    font-style: italic;
    color: var(--text-dark);
    padding: 28px;
    background: var(--bg-cream);
    border-left: 4px solid var(--accent);
    margin-top: 28px;
    font-family: 'Playfair Display', serif;
    border-radius: 0 8px 8px 0;
}

/* Print Styles */
@media print {
    .header,
    .footer {
        display: none;
    }

    .offer-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 24px 60px;
    }

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

    .about-block {
        padding: 24px;
    }

    .about-subtitle {
        font-size: 24px;
    }

    .about-intro p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 16px 40px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-block {
        padding: 20px;
        border-radius: 12px;
    }

    .about-subtitle {
        font-size: 22px;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 24px 80px;
    background: var(--bg-cream);
    min-height: calc(100vh - 200px);
}

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

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.5px;
    text-align: center;
    line-height: 1.3;
}

.contact-intro {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 44px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-form:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    border-radius: 10px;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(38, 166, 154, 0.1);
}

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    cursor: pointer;
}

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

.form-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

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

.form-submit {
    width: 100%;
    padding: 16px 36px;
    background: var(--graphite);
    color: var(--bg-white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 28px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(107, 141, 214, 0.3);
}

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

.form-success {
    background: var(--bg-white);
    border: 1px solid var(--accent);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--accent);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.form-success h3 {
    font-family: 'Lora', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.35;
}

.form-success p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 24px 60px;
    }

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

    .contact-form {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 16px 40px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-intro {
        font-size: 16px;
    }

    .contact-form {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .form-input,
    .form-textarea {
        border-radius: 8px;
    }

    .form-submit {
        border-radius: 24px;
    }
}

/* Balanced Usage Page Styles */
.balanced-section {
    padding: 100px 24px 80px;
    background: var(--bg-cream);
    min-height: calc(100vh - 200px);
}

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

.balanced-title {
    font-family: 'Lora', serif;
    font-size: 50px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 36px;
    letter-spacing: -0.5px;
    text-align: center;
    line-height: 1.3;
}

.balanced-intro {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
}

.balanced-intro p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    text-align: center;
}

.balanced-block {
    margin-bottom: 40px;
    padding: 36px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.balanced-block:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.balanced-block.highlight {
    background: linear-gradient(135deg, rgba(107, 141, 214, 0.06) 0%, rgba(143, 168, 232, 0.06) 100%);
    border-color: var(--accent);
}

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

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

.balanced-subtitle {
    font-family: 'Lora', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    margin: 0;
    line-height: 1.35;
}

.balanced-block p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.balanced-list li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

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

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

.help-resource {
    padding: 28px;
    background: var(--bg-cream);
    border-left: 4px solid var(--accent);
    border: 1px solid var(--border-color);
    border-left-width: 4px;
    border-left-color: var(--accent);
    border-radius: 0 8px 8px 0;
}

.help-resource-title {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.35;
}

.help-resource-contact {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 4px;
}

.help-resource-note {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-style: italic;
}

.help-resource-link {
    font-size: 15px;
    color: var(--text-medium);
    margin-top: 8px;
}

.help-resource-link a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

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

@media (max-width: 768px) {
    .balanced-section {
        padding: 80px 24px 60px;
    }

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

    .balanced-block {
        padding: 24px;
    }

    .balanced-subtitle {
        font-size: 22px;
    }

    .balanced-icon {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .balanced-section {
        padding: 60px 16px 40px;
    }

    .balanced-title {
        font-size: 28px;
    }

    .balanced-block {
        padding: 20px;
        border-radius: 12px;
    }

    .balanced-block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .balanced-subtitle {
        font-size: 20px;
    }

    .help-resource {
        padding: 20px;
    }
}

/* Terms of Use Page Styles */
.terms-section {
    padding: 100px 24px 80px;
    background: var(--bg-cream);
    min-height: calc(100vh - 200px);
}

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

.terms-title {
    font-family: 'Lora', serif;
    font-size: 50px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 36px;
    letter-spacing: -0.5px;
    text-align: center;
    line-height: 1.3;
}

.terms-intro {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
}

.terms-intro p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    text-align: center;
}

.terms-article {
    margin-bottom: 32px;
    padding: 36px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.terms-article:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.terms-article-number {
    font-family: 'Lora', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
    text-align: center;
}

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

.terms-article-title {
    font-family: 'Lora', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
    line-height: 1.35;
}

.terms-article p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.terms-list li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .terms-section {
        padding: 80px 24px 60px;
    }

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

    .terms-article {
        padding: 24px;
        flex-direction: column;
        gap: 16px;
    }

    .terms-article-number {
        font-size: 28px;
        width: auto;
    }

    .terms-article-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .terms-section {
        padding: 60px 16px 40px;
    }

    .terms-title {
        font-size: 28px;
    }

    .terms-article {
        padding: 20px;
        border-radius: 12px;
    }

    .terms-article-number {
        font-size: 24px;
    }

    .terms-article-title {
        font-size: 18px;
    }
}
