/* Core Reset & Fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --bg-dark: #07070c;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.07);
    --primary: #8A5CFF;
    --primary-glow: rgba(138, 92, 255, 0.4);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --glow-color-1: #c084fc;
    --glow-color-2: #6366f1;
}

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

/* Ambient Glow Backgrounds */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
    animation: floatGlow 20s infinite alternate ease-in-out;
}

.glow-1 {
    background-color: var(--glow-color-1);
    top: -100px;
    right: -100px;
}

.glow-2 {
    background-color: var(--glow-color-2);
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 80px) scale(1.2); }
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, #c084fc 0%, #8A5CFF 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Nav */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    background-color: rgba(7, 7, 12, 0.7);
}

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

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.logo-icon {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-btn {
    background: rgba(138, 92, 255, 0.1);
    border: 1px solid var(--primary);
    padding: 8px 18px;
    border-radius: 30px;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(138, 92, 255, 0.2);
    transition: all 0.3s !important;
}

.nav-btn:hover {
    background: var(--primary) !important;
    box-shadow: 0 0 25px var(--primary-glow);
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(138, 92, 255, 0.1);
    border: 1px solid rgba(138, 92, 255, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #c084fc;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(138, 92, 255, 0.6);
}

.btn-secondary {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.artwork-card {
    position: relative;
    border-radius: 50%;
    padding: 10px;
    background: radial-gradient(circle, rgba(138,92,255,0.2) 0%, rgba(0,0,0,0) 70%);
}

.artwork-card img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 50px rgba(138, 92, 255, 0.3);
}

.pulse-ring {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: ringPulse 3s infinite linear;
    opacity: 0;
}

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

/* Stats Section */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 92, 255, 0.3);
    box-shadow: 0 10px 30px rgba(138, 92, 255, 0.05);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.viewers-bar {
    background: rgba(138, 92, 255, 0.05);
    border: 1px solid rgba(138, 92, 255, 0.15);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 550px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.viewers-bar .divider {
    color: rgba(255, 255, 255, 0.1);
}

.text-glow {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 92, 255, 0.3);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(138, 92, 255, 0.1);
    border: 1px solid rgba(138, 92, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Commands Section */
.commands-section {
    padding: 80px 0;
}

.commands-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
}

.tab-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 5px 20px var(--primary-glow);
}

.command-category-content {
    display: none;
    flex-direction: column;
    gap: 15px;
}

.command-category-content.active {
    display: flex;
}

.command-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(8px);
}

.cmd-trigger code {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: #c084fc;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Space Grotesk', monospace;
    font-weight: 600;
}

.cmd-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: right;
    max-width: 60%;
}

/* Footer */
footer {
    border-top: 1px solid var(--card-border);
    padding: 40px 0;
    background: #040407;
    margin-top: 80px;
}

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

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.socials a:hover {
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 140px;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        margin: 0 auto 40px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-visual {
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 15px;
    }
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .command-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .cmd-desc {
        text-align: left;
        max-width: 100%;
    }
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
