:root {
    --primary: #F0B90B;
    --primary-dark: #d4a50a;
    --primary-light: #FFD666;
    --secondary: #0f172a;
    --text-main: #ffffff;
    --text-gray: rgba(255, 255, 255, 0.7);
    --bg-dark: #0c0e14;
    --bg-dark-2: #1a1d28;
    --bg-card: #1e2330;
    --shadow-soft: 0 20px 40px -10px rgba(0,0,0,0.3);
    --shadow-gold: 0 10px 40px rgba(240, 185, 11, 0.2);
    --radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background: linear-gradient(135deg, #0c0e14 0%, #1a1d28 50%, #0c0e14 100%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ==================== POPUP STYLES ==================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.popup-overlay.hidden {
    display: none;
}

.popup-box {
    background: linear-gradient(145deg, #1e2330 0%, #141820 100%);
    border: 1px solid rgba(240, 185, 11, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 550px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(240, 185, 11, 0.1);
    animation: popupIn 0.3s ease-out;
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.3);
    color: var(--primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.popup-close:hover {
    background: var(--primary);
    color: #0c0e14;
}

.popup-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.popup-box h3 {
    color: var(--primary);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.popup-box p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.popup-box p strong {
    color: #fff;
}

.popup-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
}
/* ==================== END POPUP ==================== */

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 14, 20, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(240, 185, 11, 0.1);
    padding: 1rem 0;
}

nav { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0;
    letter-spacing: -0.5px;
}
.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}
.nav-links a:hover { color: var(--primary); }

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    border: none;
    font-size: 0.95rem;
}
.btn-primary {
    background: linear-gradient(135deg, #F0B90B 0%, #FFD666 100%);
    color: #0c0e14;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #FFD666 0%, #F0B90B 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(240, 185, 11, 0.4);
}
.btn-outline {
    border: 1px solid rgba(240, 185, 11, 0.3);
    background: transparent;
    color: var(--primary);
}
.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(240, 185, 11, 0.1);
}

.desktop-btns { display: flex; gap: 1rem; }
.mobile-btn { display: none; width: 100%; text-align: center; margin-top: 1rem; }

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, rgba(240, 185, 11, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.2rem;
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.3);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    color: #fff;
}
.hero h1 span {
    background: linear-gradient(90deg, #F0B90B 0%, #FFD666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 90%;
}
.hero-img { position: relative; z-index: 1; }
.hero-img img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(240, 185, 11, 0.2));
    animation: 6s ease-in-out 0s infinite normal none running float;
}

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

/* Stats Bar */
.stats-bar {
    background: linear-gradient(180deg, rgba(240, 185, 11, 0.05) 0%, transparent 100%);
    padding: 3rem 0;
    border-top: 1px solid rgba(240, 185, 11, 0.1);
    border-bottom: 1px solid rgba(240, 185, 11, 0.1);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.2rem;
}
.stat-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Sections */
.section { padding: 100px 0; }
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}
.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Binance Section */
.binance-section {
    background: linear-gradient(135deg, #0c0e14 0%, #1a1d28 50%, #0c0e14 100%);
    border-radius: 30px;
    padding: 5rem;
    margin: 2rem 0 5rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(240, 185, 11, 0.15);
}

.binance-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.binance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.binance-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 1.2rem;
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.3);
    color: #F0B90B;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.binance-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.binance-content h2 span {
    background: linear-gradient(90deg, #F0B90B 0%, #FFD666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.binance-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.binance-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.binance-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(240, 185, 11, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F0B90B;
    font-weight: 700;
    font-size: 1.1rem;
}

.binance-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.binance-btn {
    background: linear-gradient(135deg, #F0B90B 0%, #FFD666 100%);
    color: #0c0e14 !important;
    padding: 1rem 2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    box-shadow: 0 10px 40px rgba(240, 185, 11, 0.3);
    transition: all 0.3s ease;
}

.binance-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(240, 185, 11, 0.4);
}

.binance-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.binance-card {
    background: linear-gradient(145deg, #1e2330 0%, #141820 100%);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 380px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(240, 185, 11, 0.2);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.binance-logo-container {
    width: 80px;
    height: 80px;
    background: rgba(240, 185, 11, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.binance-logo {
    width: 50px;
    height: 50px;
}

.card-content .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-tag {
    background: rgba(240, 185, 11, 0.2);
    color: #F0B90B;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-status {
    color: #00c853;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.card-content > p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.card-stats .stat {
    text-align: center;
}

.stat-value {
    display: block;
    color: #F0B90B;
    font-size: 1.5rem;
    font-weight: 800;
}

.stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #F0B90B;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-coin {
    position: absolute;
    font-size: 2rem;
    color: rgba(240, 185, 11, 0.3);
    animation: floatCoin 4s ease-in-out infinite;
}

.coin-1 { top: 10%; right: 10%; animation-delay: 0s; }
.coin-2 { bottom: 20%; left: 5%; animation-delay: 1s; }
.coin-3 { top: 50%; right: 0%; animation-delay: 2s; }

@keyframes floatCoin {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(240, 185, 11, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
}
.card:hover {
    transform: translateY(-10px);
    border-color: rgba(240, 185, 11, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), var(--shadow-gold);
}
.card:hover::before {
    opacity: 1;
}
.icon-box {
    width: 64px;
    height: 64px;
    background: rgba(240, 185, 11, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(240, 185, 11, 0.2);
}
.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}
.card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}
.card-link {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.card-link:hover {
    color: var(--primary-light);
}

/* Platform Section */
.platform-section {
    background: var(--bg-card);
    color: white;
    border-radius: 30px;
    padding: 5rem;
    margin: 5rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(240, 185, 11, 0.1);
}
.platform-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}
.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.platform-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.platform-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}
.platform-content ul li {
    color: var(--text-gray);
    margin-bottom: 10px;
}
.platform-content ul li::before {
    content: "✓";
    color: var(--primary);
    margin-right: 10px;
    font-weight: bold;
}
.platform-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s;
}
.platform-img:hover img { transform: scale(1.02); }

/* About Section */
.about-section { 
    background: linear-gradient(180deg, transparent 0%, rgba(240, 185, 11, 0.03) 50%, transparent 100%);
    position: relative;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-img img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(240, 185, 11, 0.1);
}
.about-content .badge {
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.3);
    color: var(--primary);
}
.about-content h2 {
    color: #fff;
}
.about-content p {
    color: var(--text-gray);
}

/* Contact Section */
#contact {
    background: linear-gradient(180deg, transparent 0%, rgba(240, 185, 11, 0.05) 100%);
}
.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(240, 185, 11, 0.15);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.input-group { margin-bottom: 1.5rem; }
.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-gray);
}
.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}
.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.input-group select {
    color: rgba(255, 255, 255, 0.8);
}
.input-group select option {
    background: var(--bg-card);
    color: #fff;
}
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(240, 185, 11, 0.05);
    box-shadow: 0 0 0 4px rgba(240, 185, 11, 0.1);
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: var(--text-gray);
    padding: 80px 0 30px;
    font-size: 0.95rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(240, 185, 11, 0.1);
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}
.footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}
.footer ul li { margin-bottom: 0.8rem; }
.footer a {
    color: var(--text-gray);
    transition: 0.3s;
}
.footer a:hover {
    color: var(--primary);
    transform: translateX(5px);
    display: inline-block;
}
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}
.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(240, 185, 11, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}
.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
}
.footer-bottom {
    border-top: 1px solid rgba(240, 185, 11, 0.1);
    padding-top: 2rem;
    text-align: center;
}
.legal-links a { margin: 0 15px; }

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    margin: 6px 0;
    border-radius: 3px;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero p { margin: 0 auto 2.5rem; }
    .hero-img { width: 80%; margin: 0 auto; }
    .platform-section { padding: 3rem; }
    .platform-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .platform-img { order: -1; }
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .binance-section { padding: 3rem; }
    .binance-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .binance-features {
        align-items: center;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: relative;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 75%;
        max-width: 300px;
        background: var(--bg-card);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -10px 0px 30px rgba(0, 0, 0, 0.3);
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 2rem;
        gap: 0;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s, transform 0.3s;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(8) { transition-delay: 0.45s; }
    .nav-links.active li:nth-child(9) { transition-delay: 0.5s; }
    
    .menu-overlay {
        display: block;
    }
    
    .desktop-btns { display: none; }
    
    .mobile-btn {
        display: block;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .hero h1 { font-size: 2.2rem; }
    
    .stats-grid,
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons { justify-content: center; }
    
    .legal-links a {
        display: block;
        margin: 10px 0;
    }
    
    .contact-wrapper { padding: 1.5rem; }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .binance-section {
        padding: 2rem 1.5rem;
    }
    .binance-content h2 {
        font-size: 2rem;
    }
    .binance-card {
        max-width: 100%;
    }
    
    /* Popup Mobile */
    .popup-box {
        padding: 1.5rem;
        margin: 1rem;
    }
    .popup-box h3 {
        font-size: 1.25rem;
    }
    .popup-box p {
        font-size: 0.9rem;
    }
}
