/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --card: #141414;
    --card2: #1a1a1a;
    --border: #2a2a2a;
    --text: #ffffff;
    --muted: #888888;
    --accent: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    background-image: url('../images/walpaper.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    
    /* Disable text selection */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Allow text selection only for input fields */
input, textarea {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
}

/* Disable image dragging */
img {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Mobile background optimization */
@media (max-width: 900px) {
    body {
        background-size: cover;
        background-attachment: scroll;
        background-position: center top;
    }
}

@media (max-width: 600px) {
    body {
        background-size: auto 100%;
        background-attachment: scroll;
        background-position: center top;
        background-repeat: no-repeat;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
/* For Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 6px;
    border: 2px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {
    background: #3a3a3a;
}

::-webkit-scrollbar-thumb:active {
    background: #4a4a4a;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #2a2a2a #0a0a0a;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1150px, 90%);
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 36px;
    padding: 8px 40px 8px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    font-family: 'Outfit', sans-serif;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0px;
    font-size: 1.55rem;
    font-weight: 700;
    white-space: nowrap;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo span {
    margin-left: -8px;
}

.nav-logo img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    flex-shrink: 0;
}

.hero-left-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    max-width: 560px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #c0c0c0;
    transition: color 0.2s;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn-login {
    font-size: 1.1rem;
    font-weight: 500;
    color: #c0c0c0;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.btn-login:hover {
    color: var(--text);
}

.btn-signup {
    background: rgba(25, 25, 25, 0.95);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    padding: 10px 26px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.22);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    letter-spacing: 0.01em;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.btn-signup:hover {
    border-color: rgba(255,255,255,0.45);
    box-shadow: 0 0 12px rgba(255,255,255,0.08);
}

.nav-links a {
    font-size: 0.85rem;
    color: var(--muted);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-login {
    font-size: 0.85rem;
    color: var(--muted);
    transition: color 0.2s;
}

.btn-login:hover {
    color: var(--text);
}

/* ===== HERO ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
}

.hero {
    display: flex;
    align-items: center;
    gap: 48px;
    width: 100%;
    max-width: 1400px;
    padding: 110px 0 80px;
}

.hero-left {
    background: rgba(12, 12, 12, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 44px 40px 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.1);
    max-width: 560px;
    width: 560px;
    position: relative;
}

.hero-left::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.03));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
    filter: blur(0.5px);
}

.hero-left h1 {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.hero-left p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.hero-input-row {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.input-prefix-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(25, 25, 25, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0 14px;
    transition: border-color 0.2s;
}

.input-prefix-wrap:focus-within {
    border-color: #555;
}

.input-prefix {
    color: #888;
    font-size: 0.875rem;
    white-space: nowrap;
    user-select: none;
}

.input-prefix-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 0;
    color: var(--text);
    font-size: 0.875rem;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.input-prefix-wrap input::placeholder {
    color: var(--muted);
    font-family: 'Montserrat', sans-serif;
}

.btn-claim {
    background: rgba(25, 25, 25, 0.95);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.22);
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.btn-claim:hover {
    border-color: rgba(255,255,255,0.45);
    box-shadow: 0 0 12px rgba(255,255,255,0.08);
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    flex: 1;
    min-width: 90px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.badge::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.4;
    filter: blur(0.5px);
}

.badge-check {
    color: var(--text);
    font-size: 1rem;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.badge-text strong {
    color: var(--text);
    font-weight: 600;
    font-size: 0.82rem;
}

.badge-text span {
    color: var(--muted);
    font-size: 0.76rem;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner {
    width: 660px;
    max-width: 660px;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 60px rgba(0,0,0,0.7);
    background: rgba(12,12,12,0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.wheel {
    width: 3px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    margin-top: 10px;
    animation: scroll-animation 2s infinite;
}

@keyframes scroll-animation {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateY(10px);
    }
    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 100px 5%;
    text-align: center;
}

.stats-section h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.stats-section h2 span {
    color: #bbb;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.stats-section .subtitle {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 56px;
    font-family: 'Montserrat', sans-serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(18, 18, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px 28px;
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr auto;
    position: relative;
    min-height: 85px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.4;
    filter: blur(0.5px);
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.stat-card:hover .stat-icon {
    opacity: 1;
    color: #fff;
}

.stat-card:hover .stat-icon svg {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.stat-card .stat-icon {
    grid-column: 2;
    grid-row: 1;
    color: #666;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s;
}

.stat-card .stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-card .stat-content {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: flex-end;
}

.stat-card .stat-val {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: #888;
    margin-top: 2px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 100px 5%;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 56px;
}

.pricing-section h2 span {
    color: #ccc;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.pricing-grid {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1050px;
    margin: 0 auto;
    align-items: flex-end;
}

.pricing-card {
    background: rgba(18, 18, 18, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 38px 34px;
    flex: 1;
    min-width: 300px;
    max-width: 440px;
    text-align: left;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.4;
    filter: blur(0.5px);
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.pricing-card.popular {
    background: rgba(22, 22, 22, 0.95);
    border-color: #444;
}

.popular-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: #fff;
    color: #000;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card .price {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    line-height: 1;
}

.pricing-card .price sup {
    font-size: 2.2rem;
    font-weight: 600;
    vertical-align: baseline;
    position: relative;
    top: 0;
    line-height: 1;
}

.pricing-card .price-note-inline {
    font-size: 0.9rem;
    color: var(--muted);
    margin-left: 8px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}

.pricing-card .price-desc {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.highlight-text {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    font-size: 0.9rem;
    color: #ccc;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
}

.pricing-features li::before {
    content: '✓';
    color: var(--text);
    font-weight: 700;
    font-size: 0.85rem;
}

.btn-pricing {
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(25, 25, 25, 0.95);
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.25);
}

.btn-pricing.white {
    background: #ffffff;
    color: #000;
    border: none;
    text-shadow: none;
    font-weight: 800;
}

.btn-pricing:hover {
    border-color: rgba(255,255,255,0.45);
    box-shadow: 0 0 14px rgba(255,255,255,0.08);
}

.btn-pricing.white:hover {
    opacity: 0.88;
    box-shadow: none;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
}

.faq-item {
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.4;
    filter: blur(0.5px);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.faq-question:hover {
    background: rgba(255,255,255,0.04);
}

.faq-chevron {
    font-size: 0.8rem;
    transition: transform 0.3s;
    color: var(--muted);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid var(--border);
    padding: 60px 5% 30px;
    background: rgba(8, 8, 8, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo {
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 240px;
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(25,25,25,0.9);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.78rem;
    color: #aaa;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
}

.footer-lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(25,25,25,0.9);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.78rem;
    color: #aaa;
    margin-top: 12px;
    cursor: pointer;
}

.footer-col h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: #999;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--muted);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 76px;
    height: 76px;
    background: rgba(25,25,25,0.9);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--muted);
    transition: color 0.2s, border-color 0.2s;
}

.footer-socials a:hover {
    color: var(--text);
    border-color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding-top: 120px;
    }

    .hero-left,
    .hero-right {
        max-width: 100%;
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    /* Navbar */
    .navbar {
        padding: 6px 16px;
        width: 92%;
        border-radius: 24px;
        gap: 8px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-logo {
        font-size: 1.2rem;
        gap: 0;
        flex-shrink: 0;
    }
    
    .nav-logo img {
        width: 50px;
        height: 50px;
    }
    
    .nav-logo span {
        margin-left: -6px;
    }
    
    .nav-right {
        gap: 8px;
        flex-shrink: 0;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .btn-login {
        font-size: 0.8rem;
    }
    
    .btn-signup {
        font-size: 0.8rem;
        padding: 8px 16px;
        border-radius: 16px;
        white-space: nowrap;
    }

    /* Hero */
    .hero-section {
        padding: 0 3%;
        min-height: auto;
    }
    
    .hero {
        padding: 100px 0 40px;
        gap: 24px;
    }
    
    .hero-left-wrap {
        width: 100%;
    }
    
    .hero-left {
        padding: 28px 24px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-left h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .hero-left p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .hero-banner {
        width: 100%;
        max-width: 100%;
        height: 250px;
        border-radius: 12px;
    }
    
    .hero-input-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .input-prefix-wrap {
        padding: 0 12px;
    }
    
    .input-prefix {
        font-size: 0.8rem;
    }
    
    .input-prefix-wrap input {
        font-size: 0.8rem;
        padding: 9px 0;
    }
    
    .btn-claim {
        width: 100%;
        padding: 11px 20px;
        font-size: 0.85rem;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 8px;
    }
    
    .badge {
        min-width: 100%;
        padding: 10px 14px;
        font-size: 0.75rem;
    }
    
    .badge-text strong {
        font-size: 0.8rem;
    }
    
    .badge-text span {
        font-size: 0.74rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .mouse {
        width: 24px;
        height: 38px;
    }

    /* Stats */
    .stats-section {
        padding: 60px 3% 40px;
    }
    
    .stats-section h2 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 12px;
        padding: 0 10px;
    }
    
    .stats-section .subtitle {
        font-size: 0.85rem;
        margin-bottom: 32px;
        padding: 0 10px;
    }
    
    .stats-section .subtitle br {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-card {
        padding: 14px 18px;
        min-height: 70px;
    }
    
    .stat-card .stat-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .stat-val {
        font-size: 1.5rem !important;
    }
    
    .stat-label {
        font-size: 0.78rem !important;
    }

    /* Pricing */
    .pricing-section {
        padding: 60px 3% 40px;
    }
    
    .pricing-section h2 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 32px;
        padding: 0 10px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 28px 24px;
        min-width: 100%;
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
    
    .pricing-card .price {
        font-size: 1.9rem;
    }
    
    .pricing-card .price sup {
        font-size: 1.9rem;
    }
    
    .price-note-inline {
        font-size: 0.85rem;
    }
    
    .price-desc {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }
    
    .pricing-features li {
        font-size: 0.85rem;
        padding: 5px 0;
    }
    
    .btn-pricing {
        padding: 12px;
        font-size: 0.9rem;
    }

    /* FAQ */
    .faq-section {
        padding: 60px 3% 40px;
    }
    
    .faq-section h2 {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }
    
    .faq-item {
        margin-bottom: 10px;
    }
    
    .faq-question {
        font-size: 0.9rem;
        padding: 16px 18px;
    }
    
    .faq-answer {
        font-size: 0.82rem;
        line-height: 1.5;
        padding: 0 18px;
    }
    
    .faq-item.open .faq-answer {
        padding: 0 18px 16px;
    }

    /* Footer - Mobile Version (Completely Different Layout) */
    .new-footer {
        padding: 40px 5% 30px !important;
    }
    
    /* Force mobile layout */
    footer.new-footer {
        text-align: center;
    }
    
    /* Override desktop grid completely */
    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        align-items: center !important;
        gap: 24px !important;
        margin-bottom: 32px !important;
        max-width: 100% !important;
    }
    
    .footer-left {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Logo and System Status stacked vertically */
    .footer-brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
    }
    
    .brand-logo {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
        font-size: 1.4rem !important;
        font-weight: 700;
        color: #fff;
    }
    
    .brand-logo img {
        width: 70px !important;
        height: 70px !important;
        object-fit: contain;
    }
    
    .brand-logo span {
        margin-left: 0 !important;
    }
    
    .system-status {
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
        font-size: 0.8rem !important;
        font-weight: 500;
        padding: 8px 16px !important;
        background: rgba(25, 25, 25, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        color: #ccc;
        white-space: nowrap;
    }
    
    .status-icon {
        width: 12px !important;
        height: 12px !important;
    }
    
    .footer-description {
        font-size: 0.88rem !important;
        color: #888;
        line-height: 1.6;
        max-width: 100% !important;
        text-align: center !important;
        margin-left: 0 !important;
    }
    
    .footer-lang {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 0.88rem !important;
        padding: 12px 18px !important;
        background: rgba(25, 25, 25, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        position: relative;
    }
    
    .footer-lang span:first-child {
        display: flex !important;
        align-items: center;
        gap: 10px;
    }
    
    .flag-icon {
        width: 28px !important;
        height: 20px !important;
        border-radius: 3px;
    }
    
    .lang-arrow {
        font-size: 0.85rem !important;
        color: #888;
        transition: transform 0.3s;
    }
    
    .footer-lang.active .lang-arrow {
        transform: rotate(180deg);
    }
    
    .lang-dropdown {
        position: absolute;
        bottom: 100%;
        left: 0;
        right: 0;
        width: 100%;
        margin-bottom: 8px;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        padding: 10px 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        z-index: 1000;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }
    
    .footer-lang.active .lang-dropdown {
        max-height: 280px;
        opacity: 1;
        overflow-y: auto;
    }
    
    .lang-option {
        padding: 12px 18px;
        font-size: 0.85rem;
        color: #aaa;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
        display: flex;
        align-items: center;
    }
    
    .lang-option:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }
    
    /* Footer links in single column card style - FORCE OVERRIDE */
    .footer-links {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        background: rgba(18, 18, 18, 0.6) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }
    
    .footer-column {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        width: 100% !important;
    }
    
    .footer-column:last-child {
        border-bottom: none !important;
    }
    
    .footer-column h4 {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        color: #fff !important;
        margin: 0 !important;
        padding: 16px 20px !important;
        background: rgba(255, 255, 255, 0.02) !important;
        text-align: left !important;
        text-transform: none !important;
        letter-spacing: normal !important;
    }
    
    .footer-column ul {
        list-style: none !important;
        padding: 12px 20px 16px !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        background: rgba(0, 0, 0, 0.2) !important;
    }
    
    .footer-column ul li {
        margin: 0 !important;
    }
    
    .footer-column ul li a {
        font-size: 0.85rem !important;
        color: #888 !important;
        transition: color 0.2s;
        text-align: left !important;
        display: block !important;
    }
    
    .footer-column ul li a:hover {
        color: #fff !important;
    }
    
    /* Bottom section with social and copyright */
    .footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        align-items: center !important;
        text-align: center !important;
        padding-top: 28px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
        width: 100% !important;
        justify-content: center !important;
        margin-top: 0 !important;
        max-width: 100% !important;
    }
    
    /* Social icons - bigger and more prominent */
    .footer-socials {
        display: flex !important;
        gap: 16px !important;
        justify-content: center !important;
        order: 1 !important;
    }
    
    .footer-socials a {
        width: 50px !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #888 !important;
        background: rgba(25, 25, 25, 0.7) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 12px !important;
        transition: all 0.3s !important;
    }
    
    .footer-socials a:hover {
        color: #fff !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
        background: rgba(35, 35, 35, 0.8) !important;
        transform: translateY(-2px) !important;
    }
    
    .footer-socials a svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .footer-bottom p {
        font-size: 0.78rem !important;
        color: #666 !important;
        margin: 0 !important;
        order: 2 !important;
    }
    
    /* Page Loader */
    .loader-logo {
        width: 90px;
        height: 90px;
    }
    
    .loader-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    /* Extra small screens */
    .navbar {
        padding: 5px 12px;
        width: 94%;
        border-radius: 20px;
    }
    
    .nav-logo {
        font-size: 1.1rem;
    }
    
    .nav-logo img {
        width: 45px;
        height: 45px;
    }
    
    .nav-logo span {
        margin-left: -5px;
    }
    
    .btn-login {
        font-size: 0.75rem;
    }
    
    .btn-signup {
        font-size: 0.75rem;
        padding: 7px 14px;
    }
    
    .hero-left h1 {
        font-size: 1.3rem;
    }
    
    .hero-left p {
        font-size: 0.8rem;
    }
    
    .stats-section h2 {
        font-size: 1.3rem;
    }
    
    .pricing-section h2 {
        font-size: 1.3rem;
    }
    
    .faq-section h2 {
        font-size: 1.3rem;
    }
    
    /* Footer - Extra Small Screens */
    .new-footer {
        padding: 35px 4% 25px;
    }
    
    .brand-logo {
        font-size: 1.25rem;
    }
    
    .brand-logo img {
        width: 60px;
        height: 60px;
    }
    
    .system-status {
        font-size: 0.75rem;
        padding: 7px 14px;
    }
    
    .footer-description {
        font-size: 0.84rem;
    }
    
    .footer-column h4 {
        font-size: 0.85rem;
        padding: 14px 18px;
    }
    
    .footer-column ul {
        padding: 10px 18px 14px;
    }
    
    .footer-column ul li a {
        font-size: 0.82rem;
    }
    
    .footer-lang {
        font-size: 0.84rem;
        padding: 11px 16px;
    }
    
    .footer-socials {
        gap: 14px;
    }
    
    .footer-socials a {
        width: 46px;
        height: 46px;
    }
    
    .footer-socials a svg {
        width: 19px;
        height: 19px;
    }
    
    .footer-bottom p {
        font-size: 0.76rem;
    }
    
    .loader-logo {
        width: 75px;
        height: 75px;
    }
    
    .loader-text {
        font-size: 0.9rem;
    }
}
        text-align: center;
    }
}



























/* ===== NEW FOOTER ===== */
.new-footer {
    background: rgba(8, 8, 8, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 5% 30px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0px;
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff;
}

.brand-logo span {
    margin-left: -8px;
}

.brand-logo img {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.system-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ccc;
    background: rgba(25, 25, 25, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 8px 16px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.system-status:hover {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.status-icon {
    position: relative;
    width: 14px;
    height: 14px;
}

.pulse-ring {
    animation: pulse-animation 2s ease-out infinite;
    transform-origin: center;
}

@keyframes pulse-animation {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.8);
    }
    100% {
        opacity: 0;
        transform: scale(2.2);
    }
}

.footer-description {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    max-width: 320px;
    margin-left: 20px;
}

.footer-lang {
    font-size: 0.85rem;
    color: #888;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    width: 260px;
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 16px;
}

.lang-arrow {
    margin-left: 4px;
    transition: transform 0.3s;
}

.footer-lang.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 8px;
    background: rgba(18, 18, 18, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 260px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.footer-lang.active .lang-dropdown {
    max-height: 220px;
    opacity: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.lang-dropdown::-webkit-scrollbar {
    width: 6px;
}

.lang-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.lang-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.lang-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lang-option {
    padding: 12px 18px;
    color: #aaa;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.flag-icon {
    width: 28px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 3px;
    flex-shrink: 0;
}

.footer-lang span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column ul li a {
    font-size: 0.82rem;
    color: #888;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #666;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: #fff;
}


/* ===== SCROLL ANIMATIONS ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Different animation delays for staggered effects */
.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.5s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.6s; }

/* Fade in from left */
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scale animation */
.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}


/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.6s ease;
    overflow: hidden;
}

.page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    animation: loader-pulse 2s ease-in-out infinite;
    will-change: opacity;
}

.loader-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    animation: loader-spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.4));
    will-change: transform;
}

.loader-text {
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes loader-spin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.15);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes loader-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}


/* ===== PAGE TRANSITION ===== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99998;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: auto;
}

.page-transition.out {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.transition-content {
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.transition-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.9) 50%, 
        transparent 100%);
    transform: translateX(-100%);
    animation: bar-slide 1s ease-in-out infinite;
    will-change: transform;
}

@keyframes bar-slide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}


/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: min(400px, 90%);
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 20px;
    z-index: 999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav li a {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 16px;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
    font-family: 'Outfit', sans-serif;
}

.mobile-nav li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

@media (max-width: 600px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
}

/* ===== USER MENU / AVATAR ===== */
.user-menu {
    position: relative;
}

.avatar-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s ease;
}

.avatar-btn:hover .avatar {
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 280px;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 8px;
}

.dropdown-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
}

.dropdown-info {
    flex: 1;
    min-width: 0;
}

.dropdown-username {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.dropdown-email {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 8px 12px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.dropdown-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.dropdown-item:hover svg {
    opacity: 1;
}

.logout-btn {
    color: #ef4444;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

.logout-btn svg {
    opacity: 0.7;
}

.logout-btn:hover svg {
    opacity: 1;
}
