    html {
        scroll-padding-top: 100px;
        scroll-behavior: smooth;
    }
    body {
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
    }
    .hero-gradient {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    .pin-up-gradient {
        background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    }
    .light-gradient {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    }
    .card-hover {
        transition: all 0.3s ease;
    }
    .card-hover:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .sticky-nav {
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.95);
    }
    .carousel-container {
        overflow: hidden;
    }
    .carousel-track {
        display: flex;
        transition: transform 0.5s ease;
        margin-top: -1px;
    }
    .faq-item {
        border-bottom: 1px solid #e5e7eb;
    }
    .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .faq-content.active {
        max-height: 1000px;
    }
    .faq-icon.rotated {
        transform: rotate(180deg);
    }
    .pin-up-red {
        color: #dc2626;
    }
    .pin-up-pink {
        color: #ec4899;
    }
    .expert-card {
        background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        border: 1px solid #e2e8f0;
        max-width: 100%; 
        width: 100%; 
        box-sizing: border-box; 
        padding: 16px; 
        display: flex;
        flex-direction: column; 
        overflow-wrap: break-word; 
        word-break: break-word; 
    }
    .expert-card * {
        max-width: 100%; 
        overflow-wrap: break-word; 
        word-break: break-word; 
        white-space: normal; 
    }
    .expert-card img {
        max-width: 100%; 
        height: auto; 
        display: block; 
    }
    .expert-card h3 {
        font-size: 18px; 
        line-height: 1.4;
    }
    .expert-card p,
    .expert-card ul {
        font-size: 14px;
        line-height: 1.5;
    }
    .expert-card .quote {
        font-size: 14px; 
        line-height: 1.5; 
    }
    .expert-card ul {
        padding-left: 20px; 
        list-style-position: inside; 
    }
    .team-section {
        display: flex;
        flex-wrap: wrap; 
        gap: 16px; 
        justify-content: center; 
        max-width: 100%; 
        padding: 0 16px; 
        box-sizing: border-box; 
    }
    .game-section {
        background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        z-index: 9999;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    .mobile-menu.active {
        left: 0;
    }
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .burger-menu {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
    }
    .burger-line {
        width: 25px;
        height: 3px;
        background: #374151;
        margin: 3px 0;
        transition: 0.3s;
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .dropdown {
        position: relative;
    }
    .dropdown-content {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-radius: 8px;
        padding: 8px 0;
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }
    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .dropdown-content a {
        display: block;
        padding: 10px 16px;
        color: #374151;
        text-decoration: none;
        font-weight: 500;
        transition: background 0.2s ease;
    }
    .dropdown-content a:hover {
        background: #f3f4f6;
        color: #dc2626;
    }

    .hero-content {
        padding-top: 5%;
    }

    @media (max-width: 768px) {
        .burger-menu {
            display: flex;
        }
        .desktop-nav {
            display: none;
        }
        .hero-gradient h1 {
            padding-top: 20px;
        }
        .team-section {
            flex-direction: column; 
            gap: 12px; 
            padding: 0 8px; 
        }
        .expert-card {
            padding: 12px; 
            font-size: 14px; 
        }
        .expert-card h3 {
            font-size: 16px; 
            line-height: 1.4;
        }
        .expert-card p,
        .expert-card ul,
        .expert-card .quote {
            font-size: 12px; 
            line-height: 1.5;
        }
    }
    @media (max-width: 480px) {
        .team-section {
            padding: 0 4px; 
        }
        .expert-card {
            padding: 10px; 
        }
        .expert-card h3 {
            font-size: 14px; 
        }
        .expert-card p,
        .expert-card ul,
        .expert-card .quote {
            font-size: 11px; 
            line-height: 1.4;
        }
    }
