.contact-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30,41,59,0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.3s;
}
.contact-modal-glass {
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow);
    border: 1.5px solid var(--glass-border);
    margin: 7% auto;
    padding: 32px 28px 28px 28px;
    width: 340px;
    max-width: 90vw;
    text-align: center;
    position: relative;
    color: #222;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.contact-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 28px;
    font-weight: bold;
    color: #2563EB;
    cursor: pointer;
    transition: color 0.2s;
}
.contact-modal-close:hover {
    color: #EF4444;
}
.contact-modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2563EB;
    letter-spacing: 0.5px;
}
.contact-modal-desc {
    font-size: 1rem;
    color: #334155;
    margin-bottom: 22px;
}
.contact-icons {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 10px;
}
.contact-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #222;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}
.contact-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 7px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}
.contact-icon-link:hover .contact-icon {
    transform: scale(1.18);
    box-shadow: var(--shadow-glow);
}
.contact-icon-link:hover {
    color: #2563EB;
}
/* Modern Trading Platform Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
    /* Professional Trading Colors */
    --primary-dark: #0F172A;
    --secondary-dark: #1E293B;
    --accent-blue: #2563EB;
    --electric-blue: #3B82F6;
    --success-green: #10B981;
    --warning-amber: #F59E0B;
    --danger-red: #EF4444;

    /* Glass Morphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    --gradient-accent: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #34D399 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Spacing (8px grid) */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.3);
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: #E2E8F0;
    background: var(--gradient-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Contact Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}
.contact-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 320px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    color: #222;
}
.contact-modal-close {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}
.contact-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.contact-icon {
    width: 56px;
    height: 56px;
    transition: transform 0.2s;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    background: #fff;
}
.contact-icon:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-glow);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    position: relative;
}

/* Animated Background Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-blue);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-10vh) translateX(100px);
        opacity: 0;
    }
}

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

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Stagger animation delays */
.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-500 {
    animation-delay: 0.5s;
}

/* Modern Glass Header */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: var(--space-4) 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: var(--shadow-xl);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    animation: pulse 3s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.logo-icon::before {
    content: '₿';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: white;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: var(--font-weight-medium);
    font-size: 15px;
    position: relative;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

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

.contact-btn {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-xl);
    font-weight: var(--font-weight-semibold);
    font-size: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}

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

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.contact-btn:hover::before {
    left: 100%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: var(--space-1);
    margin-right: var(--space-4);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: transparent;
    border: none;
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 50px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.lang-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lang-btn:hover::before {
    left: 100%;
}

.lang-btn.active {
    color: white;
    background: var(--gradient-accent);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.lang-btn.active::before {
    display: none;
}

.lang-btn .flag {
    font-size: 16px;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.lang-btn .lang-text {
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    margin-top: 1px;
}

/* Modern Hero Section */
.hero {
    padding: var(--space-20) 0 var(--space-16);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 10%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: white;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-success);
    border-radius: 2px;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
    line-height: 1.7;
    font-weight: var(--font-weight-normal);
}

.cta-btn {
    background: var(--gradient-success);
    color: white;
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-xl);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(16, 185, 129, 0.4);
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Hero Video Section */
.hero-video {
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.video-container {
    width: 100%;
    max-width: 560px;
    height: 315px;
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    animation: videoFloat 8s ease-in-out infinite 2s;
}

@keyframes videoFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: var(--shadow-xl);
    }

    33% {
        transform: translateY(-8px) rotate(0.5deg);
        box-shadow: var(--shadow-xl), 0 15px 30px rgba(37, 99, 235, 0.1);
    }

    66% {
        transform: translateY(-4px) rotate(-0.3deg);
        box-shadow: var(--shadow-xl), 0 10px 25px rgba(16, 185, 129, 0.1);
    }
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(37, 99, 235, 0.1) 50%,
            transparent 70%);
    animation: videoShimmer 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    border-radius: var(--radius-2xl);
}

@keyframes videoShimmer {

    0%,
    100% {
        opacity: 0;
        transform: translateX(-100%);
    }

    50% {
        opacity: 1;
        transform: translateX(100%);
    }
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-2xl);
    position: relative;
    z-index: 2;
}

/* Modern Stats Section */
.stats {
    padding: var(--space-20) 0;
    background: var(--gradient-primary);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

.stat-item:hover::before {
    opacity: 0.05;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-icon.automation {
    background: var(--gradient-accent);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.stat-icon.money {
    background: var(--gradient-success);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.stat-icon.users {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.stat-icon.satisfaction {
    background: linear-gradient(135deg, var(--warning-amber), #FCD34D);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

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

.stat-icon::before {
    content: '⚡';
    font-size: 32px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-icon.money::before {
    content: '💰';
}

.stat-icon.users::before {
    content: '👥';
}

.stat-icon.satisfaction::before {
    content: '✓';
}

.stat-content h3 {
    font-size: 32px;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-2);
    color: white;
    counter-reset: stat-counter;
    position: relative;
}

.stat-content h3.count-animation {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
}

/* Floating animation for stats - applied after fadeInUp completes */
@keyframes statFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.stat-item:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.1s both, statFloat 4s ease-in-out infinite 1s;
}

.stat-item:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.2s both, statFloat 4s ease-in-out infinite 1.5s;
}

.stat-item:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.3s both, statFloat 4s ease-in-out infinite 2s;
}

.stat-item:nth-child(4) {
    animation: fadeInUp 0.8s ease-out 0.4s both, statFloat 4s ease-in-out infinite 2.5s;
}

/* Highlighted Percentage Styles */
.highlight-percentage {
    font-size: 1.8em !important;
    font-weight: 900 !important;
    color: #10b981 !important;
    background: rgba(16, 185, 129, 0.08);
    padding: 6px 12px;
    border-radius: 8px;
    position: relative;
    display: inline-block;
    border: 1px solid rgba(16, 185, 129, 0.15);
    text-shadow: 0 1px 2px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.highlight-percentage::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    border-radius: 8px;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Exchange card hover effect for percentage */
.exchange-card:hover .highlight-percentage {
    transform: scale(1.05);
    color: #059669 !important;
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.exchange-card:hover .highlight-percentage::before {
    left: 100%;
}

/* Modern Exchanges Section */
.exchanges {
    padding: var(--space-20) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.exchanges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-extrabold);
    color: white;
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 2;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-16);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.exchanges .section-subtitle {
    margin-bottom: var(--space-20);
}

.exchanges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    position: relative;
    z-index: 2;
}

.exchange-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.exchange-card:nth-child(1) {
    animation-delay: 0.1s;
}

.exchange-card:nth-child(2) {
    animation-delay: 0.2s;
}

.exchange-card:nth-child(3) {
    animation-delay: 0.3s;
}

.exchange-card:nth-child(4) {
    animation-delay: 0.4s;
}

.exchange-card:nth-child(5) {
    animation-delay: 0.5s;
}

.exchange-card:nth-child(6) {
    animation-delay: 0.6s;
}

.exchange-card:nth-child(7) {
    animation-delay: 0.7s;
}

.exchange-card:nth-child(8) {
    animation-delay: 0.8s;
}

.exchange-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.exchange-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-xl), 0 0 50px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.4);
}

.exchange-card:hover::before {
    opacity: 0.05;
}

.card-header {
    margin-bottom: var(--space-6);
}

.crypto-tag {
    background: var(--gradient-success);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    animation: pulse 3s infinite;
}

.exchange-logo {
    width: 130px;
    height: 130px;
    margin: 0 auto var(--space-6);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: var(--space-3);
}

.exchange-card:hover .exchange-logo {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.logo-img {
    width: 100%;
    height: 100%;
    max-width: 110px;
    max-height: 110px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.exchange-card:hover .logo-img {
    transform: scale(1.1);
}

.exchange-card h3 {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-6);
    color: white;
}

.rebate-info,
.referral-info {
    margin-bottom: var(--space-4);
}

.rebate-label,
.referral-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-2);
    font-weight: var(--font-weight-medium);
}

.rebate-value {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.referral-code {
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.referral-code:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.register-btn {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    margin-bottom: var(--space-4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 44px;
    font-size: 14px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(37, 99, 235, 0.4);
}

.register-btn:hover::before {
    width: 300px;
    height: 300px;
}

.guide-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    position: relative;
}

.guide-link:hover {
    color: white;
    text-decoration: none;
}

.guide-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

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

/* Modern Information Section */
.info {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: backgroundFlow 20s ease-in-out infinite;
}

@keyframes backgroundFlow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.info-text {
    animation: slideInLeft 1s ease-out;
}

.info-text h2 {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    color: white;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--accent-blue), #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.info-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), #60A5FA);
    border-radius: 2px;
    animation: lineExpand 1s ease-out 0.5s both;
}

@keyframes lineExpand {
    from {
        width: 0;
    }

    to {
        width: 60px;
    }
}

.info-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.info-features {
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInStagger 0.6s ease-out both;
    position: relative;
    overflow: hidden;
}

.feature-item:nth-child(1) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.8s;
}

.feature-item:nth-child(3) {
    animation-delay: 1s;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover {
    transform: translateX(10px) scale(1.02);
    background: rgba(37, 99, 235, 0.15);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.feature-item:hover::before {
    left: 100%;
}

.checkmark {
    color: #10B981;
    font-size: 1.3rem;
    margin-right: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item span:last-child {
    color: white;
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
}

.info-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.chart-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--glass-border);
    transition: all 0.3s ease;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
}

.chart-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(37, 99, 235, 0.3);
}

.chart-placeholder {
    width: 100%;
    height: 400px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-image: url('chart.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.chart-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 24px;
    z-index: 1;
}

.chart-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.chart-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(37, 99, 235, 0.1) 50%,
            transparent 70%);
    animation: chartShimmer 3s ease-in-out infinite;
}

.chart-placeholder::after {
    content: '';
    font-size: 4rem;
    opacity: 0;
    position: relative;
    z-index: 2;
    animation: none;
}

@keyframes chartShimmer {

    0%,
    100% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }
}

@keyframes chartPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInStagger {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Modern Footer */
.footer {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-20) 0 var(--space-8);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-12);
    margin-bottom: var(--space-12);
    position: relative;
    z-index: 2;
}

.footer-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-section:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-6);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 1px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-4);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info p {
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: all 0.3s ease;
}

.contact-info p:hover {
    transform: translateX(5px);
    color: white;
}

.contact-footer-btn {
    background: var(--gradient-success);
    color: white;
    border: none;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-xl);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-lg);
}

.contact-footer-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.contact-footer-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 25px rgba(16, 185, 129, 0.4);
}

.contact-footer-btn:hover::before {
    width: 300px;
    height: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.footer .logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.footer .logo-icon::before {
    content: '₿';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    color: white;
}

.footer .logo-text {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: white;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-6);
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 1px;
    background: var(--gradient-accent);
    transform: translateX(-50%);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
}

/* Enhanced Mobile Responsiveness */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 var(--space-4);
    }

    .hero-content {
        gap: var(--space-12);
    }

    .trading-dashboard {
        width: 400px;
        height: 280px;
    }

    .stats-grid {
        gap: var(--space-6);
    }

    .exchanges-grid {
        gap: var(--space-6);
    }
}

/* Tablets */
@media (max-width: 992px) {
    .container {
        padding: 0 var(--space-4);
    }

    .navigation {
        gap: var(--space-4);
    }

    .nav-link {
        font-size: 14px;
        padding: var(--space-2) var(--space-3);
    }

    .hero {
        padding: var(--space-16) 0 var(--space-12);
    }

    .hero-content {
        gap: var(--space-8);
    }

    .trading-dashboard {
        width: 350px;
        height: 245px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .exchanges-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-4);
    }

    .info-content {
        gap: var(--space-12);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {

    /* Hide navigation, could be replaced with mobile menu */
    .navigation {
        display: none;
    }

    /* Keep language switcher visible on mobile */
    .language-switcher {
        margin-right: var(--space-2);
        margin-left: auto;
    }

    /* Add mobile menu button */
    .header .container::after {
        content: '☰';
        font-size: 24px;
        color: white;
        cursor: pointer;
        display: block;
        padding: var(--space-2);
        margin-left: var(--space-2);
    }

    .hero {
        padding: var(--space-12) 0 var(--space-8);
        margin-top: 70px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

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

    .video-container {
        max-width: 100%;
        height: 250px;
    }

    .stats {
        padding: var(--space-16) 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .exchanges {
        padding: var(--space-16) 0;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: var(--space-4);
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: var(--space-12);
    }

    .exchanges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .exchange-card {
        padding: var(--space-6);
    }

    .exchange-logo {
        width: 100px;
        height: 100px;
        margin-bottom: var(--space-4);
        padding: var(--space-2);
    }

    .logo-img {
        max-width: 90px;
        max-height: 90px;
    }

    .exchange-card h3 {
        font-size: 20px;
        margin-bottom: var(--space-4);
    }

    .info {
        padding: var(--space-16) 0;
    }

    .info-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .info-text h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .info-text p {
        font-size: 16px;
    }

    .feature-item {
        padding: var(--space-4);
        text-align: left;
    }

    .footer {
        padding: var(--space-16) 0 var(--space-6);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    /* Touch-friendly interactions */
    .contact-btn,
    .cta-btn,
    .register-btn,
    .contact-footer-btn {
        min-height: 48px;
        font-size: 16px;
        padding: var(--space-3) var(--space-6);
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-3);
    }

    .header {
        padding: var(--space-3) 0;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    /* Compact language switcher for small screens */
    .language-switcher {
        margin-right: var(--space-1);
        padding: 2px;
        gap: 2px;
    }

    .lang-btn {
        padding: var(--space-1) var(--space-2);
        min-width: 44px;
        gap: var(--space-1);
    }

    .lang-btn .flag {
        font-size: 14px;
    }

    .lang-btn .lang-text {
        font-size: 10px;
    }

    .hero {
        padding: var(--space-8) 0 var(--space-6);
        margin-top: 60px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: var(--space-4);
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: var(--space-6);
    }

    .cta-btn {
        font-size: 14px;
        padding: var(--space-3) var(--space-6);
    }

    .video-container {
        max-width: 100%;
        height: 200px;
        margin: 0 auto;
    }

    .stats {
        padding: var(--space-12) 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .stat-item {
        padding: var(--space-6) var(--space-4);
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: var(--space-4);
    }

    .stat-icon::before {
        font-size: 24px;
    }

    .stat-content h3 {
        font-size: 24px;
    }

    .exchanges {
        padding: var(--space-16) 0;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: var(--space-4);
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: var(--space-12);
    }

    .exchanges-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .exchange-card {
        padding: var(--space-4);
    }

    .exchange-logo {
        width: 100px;
        height: 100px;
        margin-bottom: var(--space-4);
        padding: var(--space-2);
    }

    .logo-img {
        max-width: 90px;
        max-height: 90px;
    }

    .exchange-card h3 {
        font-size: 20px;
        margin-bottom: var(--space-4);
    }

    .info {
        padding: var(--space-16) 0;
    }

    .info-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .info-text h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .info-text p {
        font-size: 16px;
    }

    .feature-item {
        padding: var(--space-3);
        margin-bottom: var(--space-3);
    }

    .checkmark {
        width: 24px;
        height: 24px;
        font-size: 1rem;
        margin-right: var(--space-3);
    }

    .chart-placeholder {
        height: 200px;
    }

    .footer {
        padding: var(--space-12) 0 var(--space-4);
    }

    .footer-content {
        gap: var(--space-6);
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: var(--space-4);
    }

    .footer-section p {
        font-size: 14px;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .container {
        padding: 0 var(--space-2);
    }

    .hero-title {
        font-size: clamp(1.5rem, 10vw, 2rem);
    }

    .trading-dashboard {
        max-width: 100%;
        height: 180px;
    }

    .section-title {
        font-size: clamp(1.3rem, 8vw, 1.8rem);
    }

    .exchange-card,
    .stat-item,
    .feature-item {
        padding: var(--space-3);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .trading-dashboard {
        animation: none !important;
    }

    .particles {
        display: none !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* Already using dark theme, but could add light mode toggle */
}

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

/* Button Animations */
button,
.nav-link,
.guide-link {
    transition: all 0.3s ease;
}

/* Hover Effects */
.exchange-card:hover .exchange-logo {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl), 0 0 50px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6) var(--space-8);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
}

.modal-title {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: white;
    margin: 0;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 28px;
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.modal-content {
    padding: var(--space-6) var(--space-8);
    max-height: calc(90vh - 120px);
    overflow-y: auto;
}

/* Guide Tabs */
.guide-tabs {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: var(--space-4);
}

/* Hide tabs when showing specific exchange */
.modal.single-exchange .guide-tabs {
    display: none;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    position: relative;
    overflow: hidden;
}

.tab-btn::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;
}

.tab-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn.active {
    background: var(--gradient-accent);
    color: white;
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.tab-btn.active::before {
    display: none;
}

/* Guide Content */
.guide-content {
    position: relative;
}

.guide-section {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.guide-section.active {
    display: block;
}

.guide-header {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
}

.exchange-logo-modal {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    flex-shrink: 0;
}

.logo-img-modal {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.2);
}

.guide-info h3 {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: white;
    margin: 0 0 var(--space-2) 0;
}

.rebate-info-modal {
    font-size: 16px;
    color: var(--success-green);
    font-weight: var(--font-weight-semibold);
    margin: 0 0 var(--space-2) 0;
}

.referral-code-modal {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.referral-code-modal .code {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-md);
    font-family: 'Courier New', monospace;
    font-weight: var(--font-weight-bold);
    color: white;
    border: 1px solid var(--glass-border);
}

/* Guide Steps */
.guide-steps {
    margin-bottom: var(--space-8);
}

.step {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.6s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateX(5px);
}

.step:hover::before {
    left: 100%;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-content h4 {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: white;
    margin: 0 0 var(--space-3) 0;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 var(--space-2) 0;
    line-height: 1.6;
}

.step-content a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: color 0.3s ease;
}

.step-content a:hover {
    color: var(--electric-blue);
    text-decoration: underline;
}

/* Guide Tips */
.guide-tips {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    position: relative;
    overflow: hidden;
}

.guide-tips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(16, 185, 129, 0.05) 50%, transparent 70%);
    animation: tipsShimmer 3s ease-in-out infinite;
}

.guide-tips h4 {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--success-green);
    margin: 0 0 var(--space-4) 0;
    position: relative;
    z-index: 2;
}

.guide-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.guide-tips li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-3);
    padding-left: var(--space-6);
    position: relative;
    line-height: 1.6;
}

.guide-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success-green);
    font-weight: var(--font-weight-bold);
    font-size: 14px;
}

/* Specific styling for rebate mechanism section */
.guide-tips.rebate-mechanism {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    margin-bottom: var(--space-4);
}

.guide-tips.rebate-mechanism h4 {
    color: var(--success-green);
}

.guide-tips.rebate-mechanism::before {
    background: linear-gradient(45deg, transparent 30%, rgba(16, 185, 129, 0.05) 50%, transparent 70%);
}

/* Specific styling for notes section */
.guide-tips.notes {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    margin-bottom: var(--space-4);
}

.guide-tips.notes h4 {
    color: #f59e0b;
}

.guide-tips.notes::before {
    background: linear-gradient(45deg, transparent 30%, rgba(245, 158, 11, 0.05) 50%, transparent 70%);
}

.guide-tips.notes li::before {
    content: '⚠️';
    color: #f59e0b;
}

@keyframes tipsShimmer {

    0%,
    100% {
        opacity: 0;
        transform: translateX(-100%);
    }

    50% {
        opacity: 1;
        transform: translateX(100%);
    }
}

/* Guide Cases Styles */
.guide-cases {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.guide-case {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.guide-case:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.case-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-6);
    background: rgba(37, 99, 235, 0.1);
    border-bottom: 1px solid var(--glass-border);
}

.case-1 .case-header {
    background: rgba(16, 185, 129, 0.1);
    border-bottom-color: rgba(16, 185, 129, 0.2);
}

.case-2 .case-header {
    background: rgba(245, 158, 11, 0.1);
    border-bottom-color: rgba(245, 158, 11, 0.2);
}

.case-3 .case-header {
    background: rgba(239, 68, 68, 0.1);
    border-bottom-color: rgba(239, 68, 68, 0.2);
}

.case-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

.case-1 .case-number {
    background: var(--success-green);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.case-2 .case-number {
    background: #f59e0b;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.case-3 .case-number {
    background: #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.case-header h4 {
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: white;
    margin: 0;
    flex: 1;
}

.case-content {
    padding: var(--space-6);
}

.case-warning {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    margin-bottom: var(--space-6);
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
}

.case-warning.warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
}

.case-warning.danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
}

.case-steps {
    margin-bottom: var(--space-6);
}

.case-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.case-step:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.case-step .step-number {
    width: 24px;
    height: 24px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.case-step span:last-child {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 14px;
}

.case-step .referral-code-box {
    margin-top: var(--space-3);
    padding: var(--space-3);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
}

.case-step .referral-code-box .referral-code-display {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-weight: var(--font-weight-bold);
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
    text-align: center;
}

.case-step .referral-code-box .referral-code-display:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.case-step a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: color 0.3s ease;
}

.case-step a:hover {
    color: var(--electric-blue);
    text-decoration: underline;
}

.case-action {
    display: flex;
    flex-direction: row;
    gap: var(--space-3);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.case-btn {
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    border: none;
    font-weight: var(--font-weight-semibold);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-btn.success {
    background: var(--gradient-success);
    color: white;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.case-btn.success:hover {
    background: linear-gradient(135deg, #059669, #0d9488);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.case-btn.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.case-btn.warning:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.case-btn.danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.case-btn.danger:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
}

.case-btn.primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    min-width: 140px;
}

.case-btn.primary:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.case-btn.secondary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    min-width: 140px;
}

.case-btn.secondary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

/* Responsive styles for modal buttons */
@media (max-width: 768px) {
    .case-action {
        flex-direction: column;
        gap: var(--space-2);
    }

    .case-btn.primary,
    .case-btn.secondary {
        width: 100%;
        min-width: auto;
    }
}

.guide-detail-btn {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
}

.guide-detail-btn:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

.guide-detail-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.guide-detail-btn:hover::after {
    transform: translateX(3px);
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
        margin: var(--space-4);
    }

    .modal-header {
        padding: var(--space-4) var(--space-6);
    }

    .modal-content {
        padding: var(--space-4) var(--space-6);
        max-height: calc(95vh - 100px);
    }

    .guide-tabs {
        gap: var(--space-1);
        margin-bottom: var(--space-6);
    }

    .tab-btn {
        padding: var(--space-2) var(--space-3);
        font-size: 12px;
    }

    .guide-header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }

    .exchange-logo-modal {
        width: 60px;
        height: 60px;
    }

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

    .guide-info h3 {
        font-size: 20px;
    }

    .step {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }

    .step-number {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }

    .modal-header {
        padding: var(--space-4);
    }

    .modal-content {
        padding: var(--space-4);
        max-height: calc(100vh - 80px);
    }

    .guide-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: var(--space-2);
    }

    .tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* Contact Modal Modern Redesign */
.contact-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,41,59,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.3s;
}
.contact-modal-glass.modern-contact-modal {
  background: var(--glass-bg);
  border-radius: var(--radius-2xl);
  box-shadow: var(--glass-shadow), 0 0 40px rgba(37,99,235,0.12);
  border: 1.5px solid var(--glass-border);
  margin: 7% auto;
  padding: 36px 32px 32px 32px;
  width: 370px;
  max-width: 95vw;
  text-align: center;
  position: relative;
  color: #222;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}
.contact-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 28px;
  font-weight: bold;
  color: #2563EB;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 2;
}
.contact-modal-close:hover {
  color: #EF4444;
}
.contact-modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.contact-modal-mainicon {
  width: 54px;
  height: 54px;
  margin-bottom: 2px;
  filter: drop-shadow(0 2px 8px #2563EB33);
}
.contact-modal-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #2563EB;
  letter-spacing: 0.5px;
}
.contact-modal-desc {
  font-size: 1rem;
  color: #334155;
  margin-bottom: 22px;
}
.contact-icons {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
}
.contact-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #222;
  font-size: 0.97rem;
  font-weight: 500;
  transition: color 0.2s;
  gap: 4px;
}
.contact-icon-bg {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: var(--shadow-md);
  margin-bottom: 7px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.zalo-bg {
  background: linear-gradient(135deg, #0084FF 0%, #00C7FF 100%);
}
.fb-bg {
  background: linear-gradient(135deg, #1877F2 0%, #3B5998 100%);
}
.tg-bg {
  background: linear-gradient(135deg, #229ED9 0%, #43B0F1 100%);
}
.contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transition: transform 0.2s;
}
.contact-icon-link:hover .contact-icon-bg {
  box-shadow: 0 0 18px #2563EB55;
  transform: scale(1.12);
}
.contact-icon-link:hover {
  color: #2563EB;
}
@media (max-width: 480px) {
  .contact-modal-glass.modern-contact-modal {
    width: 98vw;
    padding: 18px 4vw 18px 4vw;
  }
  .contact-modal-title {
    font-size: 1.3rem;
  }
  .contact-modal-mainicon {
    width: 38px;
    height: 38px;
  }
  .contact-icon-bg {
    width: 44px;
    height: 44px;
  }
  .contact-icon {
    width: 24px;
    height: 24px;
  }
}

/* ========================================
   NEW PAGES STYLING - EVENTS, NEWS, PARTNERS
   ======================================== */

/* Page Hero Sections */
.page-hero {
    background: var(--gradient-primary);
    padding: var(--space-20) 0 var(--space-16);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    color: #FFFFFF;
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #94A3B8;
    max-width: 600px;
    margin: 0 auto var(--space-4);
    line-height: 1.6;
}

.page-description {
    font-size: 1.1rem;
    color: #CBD5E1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: #FFFFFF;
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #94A3B8;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   EVENTS PAGE STYLING
   ======================================== */

.events-section {
    padding: var(--space-20) 0;
    background: rgba(15, 23, 42, 0.5);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.event-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.event-card.active::before {
    background: var(--gradient-success);
}

.event-card.upcoming::before {
    background: var(--gradient-accent);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

.event-status {
    margin-bottom: var(--space-4);
}

.status-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: rgba(16, 185, 129, 0.2);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.upcoming {
    background: rgba(37, 99, 235, 0.2);
    color: #60A5FA;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.status-badge.completed {
    background: rgba(107, 114, 128, 0.2);
    color: #9CA3AF;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.event-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: #FFFFFF;
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.event-date {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: #94A3B8;
    margin-bottom: var(--space-4);
    font-weight: var(--font-weight-medium);
}

.date-icon {
    font-size: 1.1rem;
}

.event-description {
    color: #CBD5E1;
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.event-prize {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    margin-bottom: var(--space-6);
    text-align: center;
}

.prize-label {
    color: #FCD34D;
    font-weight: var(--font-weight-medium);
    margin-right: var(--space-2);
}

.prize-amount {
    color: #FBBF24;
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
}

.event-actions {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #FFFFFF;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #E2E8F0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Past Events Timeline */
.past-events-section {
    padding: var(--space-20) 0;
    background: rgba(30, 41, 59, 0.3);
}

.events-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.events-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-blue), rgba(37, 99, 235, 0.1));
}

.timeline-item {
    display: flex;
    margin-bottom: var(--space-8);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 52px;
    top: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-blue);
    border: 3px solid var(--primary-dark);
}

.timeline-date {
    width: 120px;
    color: #94A3B8;
    font-weight: var(--font-weight-medium);
    padding-top: var(--space-2);
}

.timeline-content {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-left: var(--space-6);
    backdrop-filter: blur(12px);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: #FFFFFF;
    margin-bottom: var(--space-3);
}

.timeline-description {
    color: #CBD5E1;
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

/* Newsletter Section */
.newsletter-section {
    padding: var(--space-16) 0;
    background: var(--gradient-accent);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: #FFFFFF;
    margin-bottom: var(--space-4);
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: var(--space-3);
    max-width: 400px;
    margin: 0 auto var(--space-4);
}

.newsletter-input {
    flex: 1;
    padding: var(--space-4);
    border: none;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    backdrop-filter: blur(12px);
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-btn {
    padding: var(--space-4) var(--space-6);
    background: #FFFFFF;
    color: var(--accent-blue);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.newsletter-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* ========================================
   NEWS PAGE STYLING
   ======================================== */

.news-filter-section {
    padding: var(--space-8) 0;
    background: rgba(15, 23, 42, 0.7);
}

.news-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--space-3) var(--space-6);
    background: rgba(255, 255, 255, 0.1);
    color: #CBD5E1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: var(--font-weight-medium);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-accent);
    color: #FFFFFF;
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.featured-news-section {
    padding: var(--space-16) 0;
    background: rgba(30, 41, 59, 0.3);
}

.featured-news-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-8);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.featured-news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.8s ease;
}

.featured-news-card:hover::before {
    left: 100%;
}

.featured-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(37, 99, 235, 0.4);
}

.news-image {
    position: relative;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.news-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.news-illustration svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.news-category {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-category.market {
    background: rgba(245, 158, 11, 0.2);
    color: #FBBF24;
    border: 1px solid rgba(245, 158, 11, 0.3);
    flex-shrink: 0;
    white-space: nowrap;
}

.news-content {
    padding: var(--space-8);
}

.news-title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: #FFFFFF;
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.news-meta {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    align-items: center;
}

.news-date {
    color: #94A3B8;
    font-weight: var(--font-weight-medium);
    font-size: 0.875rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.news-category-tag {
    padding: var(--space-1) var(--space-3);
    background: rgba(37, 99, 235, 0.2);
    color: #60A5FA;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.news-excerpt {
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: var(--space-6);
    font-size: 1.1rem;
}

.read-more-btn {
    background: var(--gradient-accent);
    color: #FFFFFF;
    padding: var(--space-4) var(--space-8);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.latest-news-section {
    padding: var(--space-20) 0;
    background: rgba(15, 23, 42, 0.5);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--space-10);
    margin-top: var(--space-12);
}

.news-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.3);
}

.news-card::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.6s ease;
}

.news-card:hover::before {
    left: 100%;
}

.news-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
    gap: var(--space-2);
}

.news-card-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: #FFFFFF;
    margin-bottom: var(--space-6);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.news-card:hover .news-card-title {
    color: #60A5FA;
}

.news-card-excerpt {
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: var(--space-6);
    font-size: 0.95rem;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more-link {
    color: var(--accent-blue);
    font-weight: var(--font-weight-semibold);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: var(--space-2) 0;
    position: relative;
}

.read-more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--electric-blue);
    transition: width 0.3s ease;
}

.read-more-link:hover {
    color: var(--electric-blue);
}

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

.load-more-section {
    text-align: center;
    margin-top: var(--space-12);
}

.load-more-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #E2E8F0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.market-insights-section {
    padding: var(--space-16) 0;
    background: var(--gradient-accent);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.insight-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    backdrop-filter: blur(12px);
}

.insight-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
}

.insight-number {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: #FFFFFF;
    margin-bottom: var(--space-2);
}

.insight-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-weight-medium);
}

/* ========================================
   PARTNERS PAGE STYLING
   ======================================== */

.partner-stats-section {
    padding: var(--space-16) 0;
    background: rgba(30, 41, 59, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.stat-card {
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: var(--space-4);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: #FFFFFF;
    margin-bottom: var(--space-2);
}

.stat-label {
    color: #94A3B8;
    font-weight: var(--font-weight-medium);
}

.exchange-partners-section {
    padding: var(--space-20) 0;
    background: rgba(15, 23, 42, 0.5);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.partner-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    backdrop-filter: blur(12px);
    position: relative;
    transition: all 0.3s ease;
}

.partner-card.featured {
    border-color: var(--warning-amber);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: var(--space-6);
    background: var(--gradient-success);
    color: #FFFFFF;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.partner-logo {
    text-align: center;
    margin-bottom: var(--space-6);
}

.exchange-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    color: #FFFFFF;
    font-size: 1.2rem;
}

/* .exchange-logo.binance {
    background: linear-gradient(135deg, #F3BA2F 0%, #E8A400 100%);
}

.exchange-logo.okx {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.exchange-logo.bybit {
    background: linear-gradient(135deg, #F7931A 0%, #E6820A 100%);
}

.exchange-logo.bingx {
    background: linear-gradient(135deg, #2E7DFF 0%, #1B5FCC 100%);
}

.exchange-logo.mexc {
    background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
}

.exchange-logo.bitget {
    background: linear-gradient(135deg, #00C896 0%, #00A076 100%);
} */

.partner-name {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: #FFFFFF;
    margin-bottom: var(--space-3);
    text-align: center;
}

.partner-description {
    color: #94A3B8;
    text-align: center;
    margin-bottom: var(--space-4);
}

.partner-rebate {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    margin-bottom: var(--space-4);
    text-align: center;
}

.rebate-label {
    color: #6EE7B7;
    font-weight: var(--font-weight-medium);
}

.rebate-value {
    color: #34D399;
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    margin-left: var(--space-2);
}

.partner-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    justify-content: center;
}

.feature-tag {
    background: rgba(37, 99, 235, 0.2);
    color: #60A5FA;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.partner-btn {
    width: 100%;
    background: var(--gradient-accent);
    color: #FFFFFF;
    border: none;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.tech-partners-section {
    padding: var(--space-16) 0;
    background: rgba(30, 41, 59, 0.3);
}

.tech-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.tech-partner-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease;
}

.tech-partner-card:hover {
    transform: translateY(-5px);
}

.tech-logo {
    margin-bottom: var(--space-4);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: var(--space-3);
}

.tech-logo h3 {
    color: #FFFFFF;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-3);
}

.tech-description {
    color: #CBD5E1;
    line-height: 1.6;
}

.partnership-benefits-section {
    padding: var(--space-20) 0;
    background: rgba(15, 23, 42, 0.5);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.benefit-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: #FFFFFF;
    margin-bottom: var(--space-3);
}

.benefit-description {
    color: #CBD5E1;
    line-height: 1.6;
}

.partner-application-section {
    padding: var(--space-16) 0;
    background: var(--gradient-accent);
    text-align: center;
}

.application-content {
    max-width: 600px;
    margin: 0 auto;
}

.application-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: #FFFFFF;
    margin-bottom: var(--space-4);
}

.application-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    font-size: 1.1rem;
}

.application-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.benefit-item {
    color: rgba(255, 255, 255, 0.95);
    font-weight: var(--font-weight-medium);
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
}

.application-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Category styling for news */
.news-category.regulation {
    background: rgba(239, 68, 68, 0.2);
    color: #F87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
    flex-shrink: 0;
    white-space: nowrap;
}

.news-category.institutional {
    background: rgba(139, 92, 246, 0.2);
    color: #A78BFA;
    border: 1px solid rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
    white-space: nowrap;
}

.news-category.technology {
    background: rgba(16, 185, 129, 0.2);
    color: #6EE7B7;
    border: 1px solid rgba(16, 185, 129, 0.3);
    flex-shrink: 0;
    white-space: nowrap;
}

/* ========================================
   RESPONSIVE DESIGN FOR NEW PAGES
   ======================================== */

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .events-grid,
    .news-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .featured-news-card {
        grid-template-columns: 1fr;
    }

    .news-image {
        min-height: 200px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .application-actions {
        flex-direction: column;
        align-items: center;
    }

    .events-timeline::before {
        left: 20px;
    }

    .timeline-item::before {
        left: 12px;
    }

    .timeline-date {
        width: 80px;
        font-size: 0.875rem;
    }

    .timeline-content {
        margin-left: var(--space-4);
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .event-card {
        padding: var(--space-6);
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}