:root {
    --bg-dark: #0f1014;
    --bg-card: #1b1e26;
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --accent: #60a5fa;
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --border: #2d3748;
    --glow: 0 0 25px rgba(59, 130, 246, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

.no-scroll {
    overflow: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    opacity: 0.9;
}

header {
    background-color: var(--bg-dark);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span { 
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.nav-links { 
    display: flex; 
    gap: 30px; 
    align-items: center; 
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links .nav-item { 
    font-size: 16px; 
    font-weight: 600; 
    color: var(--text-main); 
    transition: 0.3s; 
    display: flex; 
    align-items: center;
}
.nav-links .nav-item.active, .nav-links .nav-item:hover { color: var(--primary); }

.nav-icon, .nav-desc { display: none; }

section[id] {
    scroll-margin-top: 120px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background-color: transparent;
    border: none;
    color: var(--text-main);
    padding: 0;
    border-radius: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.dropdown-toggle:hover, .dropdown.active .dropdown-toggle {
    background-color: transparent;
    color: var(--primary);
    box-shadow: none;
    transform: none;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: absolute;
    background-color: rgba(15, 16, 20, 0.8);
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    top: calc(100% + 15px);
    left: -5px;
    transform: translateY(-20px);
    padding: 8px;
    display: flex;
    flex-direction: column;
}

.dropdown.active .dropdown-content { 
    visibility: visible; 
    opacity: 1; 
    transform: translateY(0); 
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.2s;
    border: 1px solid transparent;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.dropdown-item.active {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.dropdown-item-icon {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 2px;
    transition: 0.2s;
}

.dropdown-item:hover .dropdown-item-icon,
.dropdown-item.active .dropdown-item-icon {
    color: var(--primary);
}

.dropdown-item-text {
    display: flex;
    flex-direction: column;
}

.dropdown-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.2;
}

.dropdown-item.active .dropdown-item-title {
    color: var(--primary);
}

.dropdown-item-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
    line-height: 1.3;
}

.lang-dropdown .dropdown-content {
    left: auto;
    right: 0;
    min-width: 260px;
}

.lang-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    margin-right: 8px;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .lang-dropdown { display: none; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -280px;
        left: auto;
        transform: none;
        width: 280px;
        height: 100dvh;
        background-color: var(--bg-dark);
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding-top: 90px;
        padding-left: 0;
        padding-bottom: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links .nav-item, 
    .nav-links .dropdown-item {
        margin-bottom: 0;
        display: flex !important;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
        padding: 20px 25px; 
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-transform: none;
        text-align: left;
        background-color: transparent;
        border-radius: 0;
        border-top: none;
        border-left: none;
        border-right: none;
    }

    .nav-links .nav-item:hover,
    .nav-links .dropdown-item:hover {
        background-color: transparent;
        padding-left: 25px;
        transform: none;
    }

    .nav-links .nav-item.active,
    .nav-links .dropdown-item.active,
    .nav-links .nav-item:active,
    .nav-links .dropdown-item:active {
        color: var(--primary);
    }

    .nav-icon {
        display: block;
        width: 20px;
        height: 20px;
        color: var(--text-muted);
        margin-top: 3px;
        flex-shrink: 0;
    }

    .nav-desc {
        display: block;
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 4px;
        font-weight: 400;
        line-height: 1.4;
    }

    .nav-text {
        display: flex;
        flex-direction: column;
    }

    .nav-title {
        font-size: 16px;
        font-weight: 700;
        color: white;
        font-family: 'Rajdhani', sans-serif;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nav-item.active .nav-icon,
    .nav-item.active .nav-title,
    .dropdown-item.active .dropdown-item-icon,
    .dropdown-item.active .dropdown-item-title {
        color: var(--primary);
    }

    .hamburger.active .bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); background-color: #ef4444; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); background-color: #ef4444; }


    .nav-links .dropdown { 
        width: 100%; 
        display: contents;
    }
    
    .nav-links .dropdown-toggle { display: none; }

    .nav-links .dropdown-content {
        position: static;
        transform: none;
        background-color: transparent;
        border: none;
        box-shadow: none;
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        opacity: 1;
        visibility: visible;
        border-radius: 0;
    }

    .nav-links .mobile-lang-dropdown {
        display: block !important;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links .mobile-lang-dropdown .dropdown-toggle {
        display: flex !important;
        width: 100%;
        padding: 20px 25px;
        align-items: center;
        justify-content: space-between;
        color: var(--text-main);
    }

    .nav-links .mobile-lang-dropdown .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: rgba(0, 0, 0, 0.2);
        display: none;
        visibility: visible;
        opacity: 1;
        padding: 0;
    }

    .nav-links .mobile-lang-dropdown.active .dropdown-content {
        display: block;
    }

    .nav-links .mobile-lang-dropdown .dropdown-item {
        padding-left: 40px;
    }
}

.mobile-lang-dropdown {
    display: none;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1e1e2e 0%, var(--bg-dark) 70%);
    padding-top: 80px;
}

.hero-content h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #9ca3af);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.features {
    padding: 80px 0;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-dark);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
}

.feature-card h3 { margin-bottom: 10px; color: var(--primary); }

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.stats-section {
    background: linear-gradient(to right, #1e1e2e, #0f1014);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item h2 {
    font-size: 3rem;
    font-family: 'Rajdhani', sans-serif;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p { color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }

.faq-section { padding: 100px 0; background-color: var(--bg-dark); }

.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--primary); }
.faq-item details[open] summary::after { content: '-'; }

.faq-item p {
    padding: 0 20px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid var(--border);
    margin-top: 10px;
    padding-top: 15px;
}

footer {
    background-color: #050507;
    border-top: 1px solid var(--border);
    padding-top: 80px;
    font-size: 14px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid #1f2937;
}

.footer-brand h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-brand h2 span {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-muted); }

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #6b7280;
}

.legal-links { display: flex; gap: 20px; }

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-icon {
    height: 30px;
    width: auto;
    background: white;
    padding: 3px 8px;
    border-radius: 4px;
    object-fit: contain;
}

.page-header {
    padding: 180px 0 40px;
    text-align: center;
    background: var(--bg-dark);
}

.page-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    margin-bottom: 10px;
    color: white;
}

.staff-section {
    padding: 20px 0 100px;
}

.role-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 40px 0 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}

.staff-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.staff-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.4s;
    width: 100%;
    min-width: 350px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.staff-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    object-fit: cover;
}

.staff-name { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 5px; }
.staff-role { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

.staff-stars {
    color: #eab308;
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.staff-comment {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

@keyframes jiggle {
    0% { transform: rotate(0); }
    25% { transform: rotate(1deg); }
    50% { transform: rotate(-1deg); }
    75% { transform: rotate(0.5deg); }
    100% { transform: rotate(0); }
}

.staff-card:hover {
    border-color: var(--primary);
    animation: jiggle 0.4s ease-in-out;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
    will-change: transform;
    padding-right: 25px;
}

.marquee-content:hover { animation-play-state: paused; }

@keyframes scrollMarquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes scrollMarqueeRight {
    0% { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

.marquee-reverse {
    animation-name: scrollMarqueeRight;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1b1e26, #161920);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.form-group { margin-bottom: 25px; }
.form-label { 
    display: block; 
    margin-bottom: 10px; 
    color: var(--text-muted); 
    font-size: 0.85rem; 
    font-weight: 700; 
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}
.form-input:focus { 
    border-color: var(--primary); 
    outline: none; 
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1); 
}
textarea.form-input { resize: vertical; min-height: 150px; }

.contact-container .btn {
    margin-top: 10px;
    padding: 18px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
}

.contact-container .btn:hover {
    opacity: 1;
    transform: none;
}

.legal-section { padding: 80px 0; border-top: 1px solid var(--border); }

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.term-card {
    background: linear-gradient(145deg, var(--bg-card), rgba(27, 30, 38, 0.4));
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.term-card h3 { color: var(--primary); margin-bottom: 15px; font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; }
.term-card p { color: var(--text-muted); margin-bottom: 15px; line-height: 1.7; }

.term-card ul { list-style: none; padding-left: 0; color: var(--text-muted); margin-bottom: 15px; }
.term-card li { position: relative; padding-left: 25px; margin-bottom: 10px; line-height: 1.6; }

.term-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-weight: bold;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 0 auto 20px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .payment-methods { justify-content: center; flex-wrap: wrap; }
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.privacy-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.privacy-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.privacy-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.privacy-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
}

.privacy-card p, .privacy-card ul {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.disclaimer-card {
    grid-column: 1 / -1;
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.disclaimer-card .privacy-icon-box {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.disclaimer-card h3 {
    color: #ef4444;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.about-intro h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    text-transform: uppercase;
}

.about-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.tilt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px;
    perspective: 1000px;
}

.tilt-card {
    position: relative;
    width: 100%;
    min-height: 350px;
    cursor: pointer;
    transform-style: preserve-3d;
}

.tilt-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.1s ease-out, border-color 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.tilt-card:hover .tilt-inner {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.tilt-icon {
    width: 60px;
    height: 60px;
    color: var(--primary);
    margin-bottom: 25px;
    transform: translateZ(50px);
    transition: color 0.3s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateZ(50px) translateY(0); }
    50% { transform: translateZ(50px) translateY(-10px); }
}

.tilt-card:hover .tilt-icon {
    color: var(--accent);
    animation: floatIcon 2s ease-in-out infinite;
}

.tilt-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
    transform: translateZ(30px);
}

.tilt-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    transform: translateZ(20px);
}

.leaderboard-section {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 60px;
    padding-top: 40px;
}

.podium-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    width: 260px;
}

.podium-card.rank-1 {
    height: 380px;
    z-index: 2;
}

.podium-card.rank-2 { height: 320px; }
.podium-card.rank-3 { height: 290px; }

.podium-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--border);
    margin-bottom: 15px;
    object-fit: cover;
    background: var(--bg-dark);
}

.rank-1 .podium-avatar {
    width: 110px;
    height: 110px;
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.rank-2 .podium-avatar {
    border-color: #C0C0C0;
}

.rank-3 .podium-avatar {
    border-color: #CD7F32;
}

.rank-badge {
    position: absolute;
    top: -15px;
    width: 36px;
    height: 36px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #000;
    z-index: 3;
}

.rank-1 .rank-badge {
    width: 44px;
    height: 44px;
    top: -22px;
    background: #FFD700; 
    border-color: #FFD700;
    font-size: 1.2rem;
}

.rank-2 .rank-badge {
    background: #C0C0C0; 
    border-color: #C0C0C0;
    color: #000;
}

.rank-3 .rank-badge {
    background: #CD7F32; 
    border-color: #CD7F32;
    color: #000;
}

.podium-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.podium-spend {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
}

@media (max-width: 768px) {
    .leaderboard-section {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .podium-card {
        width: 100%;
        height: auto !important;
        flex-direction: row;
        padding: 15px 20px;
        align-items: center;
        text-align: left;
        gap: 15px;
    }
    
    .podium-card.rank-1 { order: 1; }
    .podium-card.rank-2 { order: 2; }
    .podium-card.rank-3 { order: 3; }

    .podium-avatar { width: 60px; height: 60px; margin-bottom: 0; }
    .rank-1 .podium-avatar { width: 60px; height: 60px; }

    .rank-badge {
        position: static;
        margin-right: 5px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .rank-1 .rank-badge { width: 30px; height: 30px; font-size: 0.9rem; }
    .podium-info { flex: 1; }
    .podium-name { font-size: 1.1rem; margin-bottom: 4px; }
}

.testimonials-section {
    padding: 80px 0 40px 0;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    gap: 40px;
    padding: 50px calc(50% - 175px);
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    opacity: 0;
    animation: fadeInCarousel 0.5s ease forwards 0.1s;
}

@keyframes fadeInCarousel {
    to { opacity: 1; }
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 350px;
    width: 350px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    scroll-snap-align: center;
    transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease, border-color 0.3s ease;
    opacity: 0.25;
    filter: blur(4px);
    transform: scale(0.85);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
}

.testimonial-card.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.15);
    border-color: var(--primary);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.testi-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--border);
}

.testi-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    font-family: 'Rajdhani', sans-serif;
}

.testi-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 50px calc(50% - 140px);
    }
    .testimonial-card {
        flex: 0 0 280px;
        width: 280px;
    }
}

.features-enhanced {
    padding: 80px 0;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border);
}

.feature-card-new {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card-new h3 {
    margin-bottom: 15px;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
}

.links-body {
    background-color: #0a0a0a;
    background-image: radial-gradient(circle at 50% 40%, rgba(0, 60, 139, 0.05), transparent 70%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    margin: 0;
}

.links-container {
    width: 100%;
    max-width: 420px;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.links-profile {
    margin-bottom: 35px;
}

.links-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2px solid var(--primary);
    padding: 5px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 20px rgba(0, 111, 255, 0.2);
}

.links-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.links-title span {
    color: var(--primary);
}

.links-desc {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 400;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.link-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 111, 255, 0.1);
}

.link-icon {
    position: absolute;
    left: 20px;
    width: 24px;
    height: 24px;
    opacity: 0.9;
}

.back-home:hover {
    color: var(--primary);
}