/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&display=swap');

:root {
    --bg-dark: #0a0b10;
    --primary: #8b5cf6;
    --cyan: #06b6d4;
    --fuchsia: #d946ef;
    --gold: #eab308;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Scene */
.scene-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at 50% -20%, rgba(139, 92, 246, 0.15), var(--bg-dark) 60%);
    z-index: -1;
}

.scene-bg::after {
    content: '';
    position: absolute;
    bottom: -10vh; left: 0; right: 0; height: 50vh;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(600px) rotateX(70deg);
    z-index: 0;
    opacity: 0.5;
}

/* Navbar */
.nav-pill {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    z-index: 100;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}
.nav-logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}
.nav-logo span strong { color: var(--cyan); }

.nav-logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-logo-text {
    height: 22px;
    width: auto;
    transform: translateY(2px);
}

.v2-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 24px;
    padding: 5px;
    margin-left: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: white;
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0; width: 100%; height: 2px;
    background: white;
    border-radius: 2px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 100px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.nav-btn:hover { background: rgba(255,255,255,0.2); }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 5% 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(90deg, var(--cyan), var(--fuchsia));
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.4);
    transition: 0.3s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(217, 70, 239, 0.7);
}
.btn-primary .icon { font-size: 24px; }
.btn-primary .text-wrap { display: flex; flex-direction: column; }
.btn-primary .main-text { font-weight: 800; font-size: 1.1rem; }
.btn-primary .sub-text { font-size: 0.7rem; opacity: 0.8; letter-spacing: 1px; }

.btn-secondary {
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255,255,255,0.3); }

/* Stats Bar */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 80px;
}

.stat-card {
    background: rgba(20, 20, 30, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1.5px;
}

.stat-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
}

/* CARDS 3D VISUAL */
.hero-visual {
    flex: 1;
    height: 600px;
    position: relative;
    perspective: 1200px;
}

.fc-wrap {
    position: absolute;
    width: 250px;
    height: 380px;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
}

.fc {
    width: 100%; height: 100%;
    background: #101018;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
    background-image: linear-gradient(180deg, rgba(255,255,255,0.1), transparent 40%);
}

.fc-glow {
    position: absolute;
    inset: -8px;
    border-radius: 24px;
    filter: blur(25px);
    opacity: 0.8;
    z-index: -1;
}

.fc-top {
    width: 100%;
    padding: 20px 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.fc-rating {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 0.8;
}
.fc-pos {
    font-size: 1rem;
    font-weight: 600;
}

.fc-player-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    margin-top: -10px;
    border: 4px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.fc-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fc-stats {
    width: 85%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.fc-stat {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
}
.fc-stat span:last-child { color: rgba(255,255,255,0.6); }

/* Card Variations */
.fc-kane { transform: translate(-90%, -40%) rotateY(-20deg) rotateZ(-5deg); z-index: 2; }

.fc-mbappe { transform: translate(-50%, -50%) translateZ(40px); z-index: 3; }

.fc-bellingham { transform: translate(-10%, -45%) rotateY(20deg) rotateZ(5deg); z-index: 1; }

.my-bot-card {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.7))
            drop-shadow(0 0 35px rgba(168, 85, 247, 0.4))
            drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.my-bot-card:hover {
    filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.9))
            drop-shadow(0 0 50px rgba(168, 85, 247, 0.6))
            drop-shadow(0 30px 50px rgba(0, 0, 0, 0.9));
}

/* Mobile */
@media (max-width: 1024px) {
    .hero-main { flex-direction: column; text-align: center; }
    .hero-actions { justify-content: center; position: relative; z-index: 10; }
    .hero-content { margin-top: 50px; }
    .hero-visual { width: 100%; height: 400px; min-height: 400px; margin-top: 40px; transform: scale(0.65); transform-origin: top center; }
    .hero-stats { grid-template-columns: 1fr 1fr; position: relative; z-index: 10; margin-top: 0; }
}
@media (max-width: 600px) {
    .hero-stats { grid-template-columns: 1fr; margin-top: -20px; }
    .hero-visual { height: 280px; min-height: 280px; transform: scale(0.45); }
    .hero-actions { flex-direction: column; }
    .hero-actions a { width: 100%; justify-content: center; }
}

/* Dropdown Navbar specific styles */
.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-icon {
    font-size: 18px;
    vertical-align: middle;
}
.caret {
    font-size: 16px;
    transition: transform 0.3s ease;
}
.nav-dropdown:hover .caret {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(20, 20, 30, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    min-width: 160px;
    display: flex;
    flex-direction: column;
    z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(15px);
}
.nav-dropdown-menu.show {
    display: block;
}

@media (max-width: 900px) {
    .nav-btn { display: none; } /* hide GET STARTED on mobile so it doesn't wrap the pill */

    .nav-pill {
        flex-wrap: wrap;
        border-radius: 20px;
        align-items: flex-start;
    }
    
    .nav-pill.mobile-open {
        background: rgba(16, 16, 24, 0.95);
    }
    
    .v2-mobile-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 15px;
    }

    .nav-pill.mobile-open .nav-links {
        display: flex;
    }

    .language-selector {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .nav-dropdown-menu {
        position: static;
        width: 100%;
        background: rgba(255,255,255,0.05);
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 5px 0 5px 15px;
        margin-top: 10px;
        display: none;
    }
    
    /* Make dropdowns work on click via JS (which is handled globally) or hover */
    .nav-dropdown:hover .nav-dropdown-menu {
        display: block;
    }
}

/* Base Dropdown Arrow */
.nav-dropdown-menu li {
    width: 100%;
}
.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}
.nav-dropdown-menu a:hover {
    background: rgba(255,255,255,0.05);
}

/* Features V2 Section */
.features-v2 {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
}

.features-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    letter-spacing: 1px;
}

.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card-v2 {
    background: rgba(20, 20, 30, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-card-v2:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.15);
}

.feature-icon-v2 {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(217, 70, 239, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.feature-icon-v2 svg {
    width: 32px;
    height: 32px;
}

.feature-card-v2:hover .feature-icon-v2 {
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.4);
}

.feature-title-v2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
}

.feature-desc-v2 {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Features Mobile */
@media (max-width: 900px) {
    .features-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .features-grid-v2 {
        grid-template-columns: 1fr;
    }
}

/* Language Selector V2 */
.language-selector {
    position: relative;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
    outline: none;
}

.lang-btn:hover {
    color: var(--cyan);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 15px;
    background: rgba(20, 20, 30, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 200;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    background: transparent;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    font-family: inherit;
    font-size: 0.9rem;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-option .flag {
    font-size: 1.2rem;
}

/* Commands Section V2 (Terminal Style) */
.commands-v2 {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cmd-terminal-v2 {
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.1);
}

.cmd-terminal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cmd-dots {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}
.cmd-dots span {
    width: 12px; height: 12px; border-radius: 50%;
}
.cmd-dots span:nth-child(1) { background: #ef4444; }
.cmd-dots span:nth-child(2) { background: #eab308; }
.cmd-dots span:nth-child(3) { background: #22c55e; }

.cmd-terminal-title {
    font-family: monospace;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.cmd-terminal-title span { color: #22c55e; }

.cmd-terminal-body {
    padding: 40px;
}

.cmd-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cmd-item-v2 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 16px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cmd-item-v2:hover {
    background: rgba(6, 182, 212, 0.05);
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1);
}

.cmd-slash {
    color: var(--cyan);
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cmd-slash::before {
    content: '❯';
    color: var(--fuchsia);
    font-weight: 900;
}

.cmd-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .cmd-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .cmd-terminal-body { padding: 25px; }
}
@media (max-width: 600px) {
    .cmd-grid-v2 { grid-template-columns: 1fr; }
}

/* CTA Section V2 */
.cta-v2 {
    padding: 120px 5%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cta-v2-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, rgba(6, 182, 212, 0.2) 50%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.cta-v2-content {
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.cta-v2-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.cta-v2-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.btn-cta-v2 {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(88, 101, 242, 0.6);
}

.cta-v2-note {
    margin-top: 25px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Footer V2 */
.footer-v2 {
    background: #050508;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 5% 30px;
    position: relative;
    z-index: 10;
}

.footer-grid-v2 {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col-v2 h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-col-v2 ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col-v2 a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-col-v2 a:hover {
    color: var(--cyan);
}

.brand-col .nav-logo {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-desc-v2 {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-social-v2 a {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    width: 45px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-social-v2 a:hover {
    background: #5865F2;
    transform: translateY(-3px);
}

.footer-bottom-v2 {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .footer-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cta-v2-content { padding: 40px 20px; }
    .btn-cta-v2 { font-size: 1rem; padding: 15px 25px; flex-direction: column; }
    .footer-grid-v2 { grid-template-columns: 1fr; text-align: center; }
    .brand-col .nav-logo { justify-content: center; }
    .footer-desc-v2 { margin: 0 auto 25px; }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}
.modal.active { display: flex; }

.modal-content {
    background: rgba(16, 16, 24, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.modal-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: white;
}

.modal-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.2s;
}
.modal-close:hover { color: white; }

/* Discord Login */
.btn-discord {
    background: #5865F2;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 15px;
    transition: 0.3s;
}
.btn-discord:hover {
    background: #4752C4;
}
.discord-login-container {
    text-align: center;
    padding: 20px 0;
}
.discord-login-text {
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.7);
}

.nav-login button:hover {
    color: white;
}
