/* ========================================
   VoiceX Website - Style Sheet
   Purple/Black Theme with Modern Effects
   Developed by kxwxs._xi
======================================== */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary: #9933FF;
    --primary-dark: #7928CA;
    --primary-light: #BB66FF;
    --secondary: #FF0080;
    --accent: #00D4FF;

    --bg-dark: #07040e;
    --bg-card: rgba(30, 20, 50, 0.2);
    --bg-gradient: linear-gradient(135deg, #130a24 0%, #080311 50%, #07040e 100%);

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;

    /* Effects */
    --glow: 0 0 30px rgba(153, 51, 255, 0.5);
    --glow-strong: 0 0 60px rgba(153, 51, 255, 0.8);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);

    /* Animation */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Prompt', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* ===== Animated Gradient Background ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg,
            #0a0a0f,
            #1a0a2e,
            #0d0520,
            #150030,
            #0a0a0f);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -2;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 50% 100%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 0%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ===== Particle Background ===== */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg-gradient);
}

/* ===== Matrix Rain Effect ===== */
#matrixRain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

/* ===== Floating Music Notes ===== */
.floating-notes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-notes span {
    position: absolute;
    font-size: 24px;
    animation: floatNote 15s linear infinite;
    opacity: 0.3;
}

.floating-notes span:nth-child(1) {
    left: 5%;
    animation-delay: 0s;
}

.floating-notes span:nth-child(2) {
    left: 15%;
    animation-delay: 2s;
}

.floating-notes span:nth-child(3) {
    left: 25%;
    animation-delay: 4s;
}

.floating-notes span:nth-child(4) {
    left: 35%;
    animation-delay: 1s;
}

.floating-notes span:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
}

.floating-notes span:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
}

.floating-notes span:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
}

.floating-notes span:nth-child(8) {
    left: 80%;
    animation-delay: 1.5s;
}

.floating-notes span:nth-child(9) {
    left: 90%;
    animation-delay: 4.5s;
}

.floating-notes span:nth-child(10) {
    left: 95%;
    animation-delay: 0.5s;
}

@keyframes floatNote {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 15, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 32px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 8px;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-invite {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 10px 24px !important;
    border-radius: 30px;
    color: white !important;
}

.btn-invite:hover {
    box-shadow: var(--glow);
    transform: translateY(-2px);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.subtitle {
    font-size: 36px;
    font-weight: 300;
    color: var(--text-secondary);
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(153, 51, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-strong);
}

.btn-secondary {
    background: var(--glass);
    color: white;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.stat {
    text-align: center;
}

.stat-number,
.stat-text {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(60px);
    animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

.hero-gif {
    max-width: 400px;
    border-radius: 20px;
    border: 2px solid var(--glass-border);
    box-shadow: var(--glow);
    animation: float 6s ease-in-out infinite;
}

.hero-mascot {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    box-shadow: 0 0 60px rgba(153, 51, 255, 0.6), 0 0 100px rgba(153, 51, 255, 0.3);
    animation: float 6s ease-in-out infinite, mascotGlow 3s ease-in-out infinite;
}

@keyframes mascotGlow {

    0%,
    100% {
        box-shadow: 0 0 60px rgba(153, 51, 255, 0.6), 0 0 100px rgba(153, 51, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 80px rgba(153, 51, 255, 0.8), 0 0 120px rgba(153, 51, 255, 0.5);
    }
}

/* ===== Mascot Decorations ===== */
.mascot-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mascot-full {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(153, 51, 255, 0.4));
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.mascot-glow-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(153, 51, 255, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite;
}

.mascot-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    z-index: 0;
}

.ring-1 {
    width: 450px;
    height: 450px;
    border-top-color: rgba(153, 51, 255, 0.5);
    border-right-color: rgba(0, 212, 255, 0.3);
    border-bottom-color: rgba(153, 51, 255, 0.5);
    animation: spin 10s linear infinite;
}

.ring-2 {
    width: 350px;
    height: 350px;
    border-left-color: rgba(0, 212, 255, 0.5);
    border-top-color: rgba(153, 51, 255, 0.3);
    animation: spin 15s linear infinite reverse;
}

.mascot-particles span {
    position: absolute;
    color: white;
    font-size: 20px;
    animation: floatParticle 4s ease-in-out infinite;
    opacity: 0;
}

.mascot-particles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.mascot-particles span:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 1.5s;
    font-size: 24px;
}

.mascot-particles span:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 2.5s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-40px) scale(1.2);
        opacity: 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Sections Common ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ===== Features Section ===== */
.features {
    padding: var(--section-padding);
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

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

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===== Bots Section ===== */
.bots {
    padding: var(--section-padding);
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.bots-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.bot-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    width: 280px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.bot-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary), transparent 30%);
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: var(--transition);
}

.bot-card:hover::before {
    opacity: 0.3;
}

@keyframes rotateBorder {
    to {
        transform: rotate(360deg);
    }
}

.bot-card.grizz:hover {
    border-color: #D2691E;
    box-shadow: 0 0 40px rgba(210, 105, 30, 0.5);
}

.bot-card.panda:hover {
    border-color: #888888;
    box-shadow: 0 0 40px rgba(136, 136, 136, 0.5);
}

.bot-card.icebear:hover {
    border-color: #ADD8E6;
    box-shadow: 0 0 40px rgba(173, 216, 230, 0.5);
}

.bot-avatar {
    font-size: 80px;
    margin-bottom: 16px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.bot-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bot-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
}

.bot-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #00ff00;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

/* Warning Badge */
.warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 165, 0, 0.15);
    border: 2px solid rgba(255, 165, 0, 0.6);
    color: #FFB347;
    padding: 12px 24px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 15px;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.2), inset 0 0 20px rgba(255, 165, 0, 0.05);
    backdrop-filter: blur(10px);
}

.warning-badge strong {
    color: var(--primary-light);
    text-shadow: 0 0 10px rgba(153, 51, 255, 0.5);
}

/* Bot Invite Buttons */
.btn-bot {
    margin-top: 16px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.grizz-btn {
    background: linear-gradient(135deg, #D2691E, #8B4513);
}

.grizz-btn:hover {
    box-shadow: 0 0 30px rgba(210, 105, 30, 0.6);
    transform: translateY(-3px);
}

.panda-btn {
    background: linear-gradient(135deg, #555555, #333333);
}

.panda-btn:hover {
    box-shadow: 0 0 30px rgba(136, 136, 136, 0.6);
    transform: translateY(-3px);
}

.icebear-btn {
    background: linear-gradient(135deg, #87CEEB, #5F9EA0);
}

.icebear-btn:hover {
    box-shadow: 0 0 30px rgba(173, 216, 230, 0.6);
    transform: translateY(-3px);
}

/* ===== Commands Section ===== */
.commands {
    padding: var(--section-padding);
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.command-item {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.command-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(153, 51, 255, 0.3);
}

.command-item code {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Consolas', monospace;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.command-item span {
    color: var(--text-secondary);
    font-size: 14px;
    white-space: nowrap;
}

/* ===== System Showcase Section ===== */
.showcase {
    padding: var(--section-padding);
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.showcase-container {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.music-panel-demo {
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.9), rgba(20, 20, 30, 0.95));
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 24px;
    width: 380px;
    box-shadow: 0 0 40px rgba(153, 51, 255, 0.3), inset 0 0 30px rgba(153, 51, 255, 0.05);
    animation: panelFloat 4s ease-in-out infinite;
}

@keyframes panelFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.panel-icon {
    font-size: 40px;
    animation: pulse 2s ease-in-out infinite;
}

.panel-title h4 {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.panel-song {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
}

.panel-progress {
    margin-bottom: 20px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    animation: progressPulse 3s ease-in-out infinite;
}

@keyframes progressPulse {

    0%,
    100% {
        width: 35%;
    }

    50% {
        width: 40%;
    }
}

.progress-time {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

.panel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ctrl-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.ctrl-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.ctrl-play {
    width: 56px;
    height: 56px;
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
}

.panel-volume {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.volume-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.volume-fill {
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, #00D4FF, var(--primary));
    border-radius: 3px;
}

.panel-queue {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 350px;
}

.showcase-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    transition: var(--transition);
}

.showcase-feature:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.sf-icon {
    font-size: 28px;
}

.showcase-feature h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

.showcase-feature p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===== Developer Section ===== */
.developer {
    padding: var(--section-padding);
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.dev-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.dev-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

.dev-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(153, 51, 255, 0.5);
}

.dev-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dev-info {
    text-align: center;
}

.dev-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dev-role {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.dev-bio {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 20px;
}

.dev-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.dev-link {
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.dev-link.discord {
    background: rgba(88, 101, 242, 0.2);
    border: 1px solid #5865F2;
    color: #5865F2;
}

.dev-link.discord:hover {
    background: #5865F2;
    color: white;
}

.dev-link.github {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

.dev-link.github:hover {
    background: white;
    color: black;
}

.dev-stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.dev-stat {
    text-align: center;
}

.ds-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.ds-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Developer Wrapper & Widget ===== */
.dev-wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.developer {
    max-width: 1000px;
}

.dev-status-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    width: fit-content;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #747f8d;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.status-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.avatar-ring {
    position: absolute;
    inset: -4px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    animation: avatarRingPulse 3s ease-in-out infinite;
}

@keyframes avatarRingPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

.dev-avatar {
    position: relative;
}

.dev-activity {
    margin: 16px 0;
}

.spotify-activity {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.1), rgba(30, 215, 96, 0.05));
    border: 1px solid rgba(30, 215, 96, 0.3);
    border-radius: 12px;
    padding: 12px;
}

.spotify-album {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.spotify-info {
    text-align: left;
}

.spotify-icon {
    font-size: 12px;
    color: #1DB954;
}

.spotify-song {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 4px 0 2px;
}

.spotify-artist {
    font-size: 12px;
    color: var(--text-muted);
}

.custom-activity {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.custom-activity span {
    font-size: 14px;
    color: var(--text-secondary);
}

.custom-activity p {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.discord-widget {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
}

.discord-widget h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.discord-widget iframe {
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

/* ===== CTA Section ===== */
.cta {
    padding: var(--section-padding);
    text-align: center;
    background: linear-gradient(135deg, rgba(153, 51, 255, 0.2) 0%, rgba(255, 0, 128, 0.1) 100%);
    position: relative;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links {
    margin: 16px 0;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links span {
    color: var(--text-muted);
}

.copyright {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 42px;
    }

    .subtitle {
        font-size: 24px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .bots-container {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 32px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .changelog-item {
        flex-direction: column;
        gap: 10px;
    }

    .changelog-version {
        margin-right: 0;
    }
}

/* ===== Hamburger Menu ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Support Button ===== */
.btn-support {
    background: rgba(88, 101, 242, 0.3);
    border: 1px solid #5865F2;
    padding: 8px 16px !important;
    border-radius: 20px;
    color: #5865F2 !important;
}

.btn-support:hover {
    background: #5865F2;
    color: white !important;
}

/* ===== Language Toggle ===== */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(153, 51, 255, 0.15), rgba(0, 212, 255, 0.15));
    border: 1px solid rgba(153, 51, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: 'Prompt', sans-serif;
}

.lang-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 30px;
}

.lang-toggle:hover::before {
    opacity: 0.2;
}

.lang-toggle:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(153, 51, 255, 0.3);
    transform: translateY(-2px);
}

.lang-toggle:active {
    transform: scale(0.95);
}

.lang-flag {
    font-size: 18px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.lang-toggle:hover .lang-flag {
    transform: scale(1.2);
}

.lang-code {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lang-toggle.switching .lang-flag {
    animation: langSwitch 0.5s ease;
}

@keyframes langSwitch {
    0% { transform: rotateY(0deg) scale(1); }
    50% { transform: rotateY(90deg) scale(0.8); }
    100% { transform: rotateY(0deg) scale(1); }
}

/* ===== FAQ Section ===== */
.faq {
    padding: var(--section-padding);
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 500;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-toggle {
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ===== Changelog Section ===== */
.changelog {
    padding: var(--section-padding);
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.changelog-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.changelog-item {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 24px;
    transition: var(--transition);
}

.changelog-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.changelog-version {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    height: fit-content;
    white-space: nowrap;
}

.changelog-content {
    flex: 1;
}

.changelog-date {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 12px;
}

.changelog-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.changelog-content li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===== Stats Section ===== */
.stats-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(153, 51, 255, 0.1) 50%, transparent 100%);
}

.stats-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-box {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-box .stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: 2px solid var(--primary);
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(153, 51, 255, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(153, 51, 255, 0.6);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

/* ===== Live Dashboard Section ===== */
.dashboard {
    padding: var(--section-padding);
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dash-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
}

.dash-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.dash-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--glass-border);
}

.dash-icon {
    font-size: 28px;
}

.dash-header h4 {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
}

.live-badge {
    background: linear-gradient(135deg, #FF0000, #FF4444);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Now Playing Styles */
.np-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 10px;
}

.np-item:last-child {
    margin-bottom: 0;
}

.np-bot {
    font-weight: 600;
    font-size: 14px;
}

.np-song {
    color: var(--text-secondary);
    font-size: 13px;
    text-align: right;
    max-width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Leaderboard Styles */
.lb-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 10px;
}

.lb-item:last-child {
    margin-bottom: 0;
}

.lb-rank {
    font-size: 24px;
}

.lb-name {
    flex: 1;
    font-weight: 500;
}

.lb-stat {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

/* Voice Channel Stats */
.vc-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.vc-stat {
    text-align: center;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    flex: 1;
}

.vc-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vc-label {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 8px;
    display: block;
}

/* Uptime History Bars */
.uptime-bars {
    display: flex;
    gap: 3px;
    height: 60px;
    align-items: flex-end;
    margin-bottom: 12px;
}

.uptime-bar {
    flex: 1;
    min-width: 8px;
    border-radius: 4px 4px 0 0;
    transition: var(--transition);
    cursor: pointer;
}

.uptime-bar:hover {
    opacity: 0.8;
    transform: scaleY(1.1);
}

.uptime-bar.up {
    background: linear-gradient(180deg, #00FF7F, #00D4FF);
}

.uptime-bar.degraded {
    background: linear-gradient(180deg, #FFD700, #FFA500);
}

.uptime-bar.down {
    background: linear-gradient(180deg, #FF4444, #FF0000);
}

.uptime-legend {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 12px;
}


/* Ping Graph Styles */
.ping-graph {
    margin-top: 24px;
    margin-bottom: 24px;
}

.ping-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(153, 51, 255, 0.4);
}

/* System Load Styles */
.sys-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sys-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.progress-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00D4FF, #9933FF);
    border-radius: 4px;
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

/* Full Width Dashboard Items */
.dashboard-full-width {
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* Space between Ping Graph and History */
    margin-top: 24px;
    /* Space between Grid and Ping Graph */
    margin-bottom: 24px;
    /* Space bottom */
}

.dashboard-full-width .dash-card {


    width: 100%;
}


/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .vc-value {
        font-size: 36px;
    }
}

/* ========================================
   PREMIUM VISUAL ENHANCEMENTS
   Added for enhanced visual experience
======================================== */

/* === Animated Gradient Border for Cards === */
.dash-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.dash-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(153, 51, 255, 0.5), 
        rgba(0, 212, 255, 0.3),
        rgba(255, 0, 128, 0.3),
        rgba(153, 51, 255, 0.5));
    background-size: 300% 300%;
    animation: gradientBorder 6s ease infinite;
    border-radius: 20px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 0;
}

@keyframes gradientBorder {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Card Hover Enhancement */
.dash-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(153, 51, 255, 0.3),
        inset 0 0 30px rgba(153, 51, 255, 0.05);
}

.dash-card:hover::before {
    animation: gradientBorder 2s ease infinite;
}

/* === Enhanced LIVE Badge with Glow === */
.live-badge {
    background: linear-gradient(135deg, #FF0033, #FF4466, #FF0033);
    background-size: 200% 100%;
    animation: livePulse 1.5s ease-in-out infinite, liveGlow 2s ease-in-out infinite;
    box-shadow: 
        0 0 10px rgba(255, 0, 51, 0.5),
        0 0 20px rgba(255, 0, 51, 0.3);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@keyframes liveGlow {
    0%, 100% {
        box-shadow: 
            0 0 10px rgba(255, 0, 51, 0.5),
            0 0 20px rgba(255, 0, 51, 0.3);
    }
    50% {
        box-shadow: 
            0 0 20px rgba(255, 0, 51, 0.8),
            0 0 40px rgba(255, 0, 51, 0.5),
            0 0 60px rgba(255, 0, 51, 0.3);
    }
}

/* === Enhanced Progress Bars === */
.progress-bar {
    background: linear-gradient(90deg, 
        #00D4FF 0%, 
        #9933FF 50%, 
        #FF0080 100%);
    background-size: 200% 100%;
    animation: progressShine 3s ease infinite;
    box-shadow: 
        0 0 10px rgba(0, 212, 255, 0.5),
        0 0 20px rgba(153, 51, 255, 0.3);
}

@keyframes progressShine {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.progress-bg {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(153, 51, 255, 0.2);
}

/* === Enhanced Leaderboard Items === */
.lb-item {
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lb-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(153, 51, 255, 0.2), 
        transparent);
    transition: left 0.5s ease;
}

.lb-item:hover::before {
    left: 100%;
}

.lb-item:hover {
    background: rgba(153, 51, 255, 0.15);
    border-color: rgba(153, 51, 255, 0.3);
    transform: translateX(10px);
}

/* Gold ranking glow */
.lb-item:first-child:hover {
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Silver ranking glow */
.lb-item:nth-child(2):hover {
    background: rgba(192, 192, 192, 0.15);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

/* Bronze ranking glow */
.lb-item:nth-child(3):hover {
    background: rgba(205, 127, 50, 0.15);
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.3);
}

/* === Enhanced Now Playing Items === */
.np-item {
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.np-item:hover {
    background: rgba(153, 51, 255, 0.15);
    border-color: rgba(153, 51, 255, 0.3);
    transform: scale(1.02);
}

.np-bot {
    position: relative;
}

.np-bot::before {
    content: '🎵';
    position: absolute;
    left: -20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.np-item:hover .np-bot::before {
    opacity: 1;
    transform: translateX(0);
}

/* === Enhanced Voice Channel Stats === */
.vc-stat {
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vc-stat::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(153, 51, 255, 0.1) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vc-stat:hover::after {
    opacity: 1;
}

.vc-stat:hover {
    border-color: rgba(153, 51, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(153, 51, 255, 0.2);
}

.vc-value {
    position: relative;
    z-index: 1;
    animation: countGlow 3s ease-in-out infinite;
}

@keyframes countGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(153, 51, 255, 0.3); }
    50% { text-shadow: 0 0 20px rgba(153, 51, 255, 0.6), 0 0 40px rgba(0, 212, 255, 0.3); }
}

/* === Enhanced Ping Value === */
.ping-value {
    font-size: 42px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pingGlow 2s ease-in-out infinite;
}

@keyframes pingGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(153, 51, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 15px rgba(153, 51, 255, 0.8)); }
}

/* === Card Shine Effect === */
.dash-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 60%
    );
    transform: rotate(45deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.dash-card:hover::after {
    animation: cardShine 1.5s ease;
}

@keyframes cardShine {
    0% { left: -50%; }
    100% { left: 150%; }
}

/* === Hero Stats Enhancement === */
.hero-stats .stat {
    padding: 20px 30px;
    background: rgba(20, 10, 40, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(153, 51, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stats .stat:hover {
    border-color: rgba(153, 51, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(153, 51, 255, 0.2);
}

/* === Feature Card Enhancement === */
.feature-card {
    position: relative;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(153, 51, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

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

/* === Bot Card Enhancement === */
.bot-card {
    position: relative;
}

.bot-avatar {
    font-size: 64px;
    animation: avatarBounce 2s ease-in-out infinite;
}

@keyframes avatarBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.bot-status.online .status-dot {
    box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
}

/* === Section Title Enhancement === */
.section-title {
    position: relative;
    display: inline-block;
}

.section-header::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    margin: 20px auto 0;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    border-radius: 2px;
    animation: lineGrow 0.8s ease-out;
}

@keyframes lineGrow {
    from { width: 0; }
    to { width: 100px; }
}

/* === Uptime Bar Enhancement === */
.uptime-bar {
    position: relative;
}

.uptime-bar.up {
    box-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

.uptime-bar:hover {
    transform: scaleY(1.2) !important;
    box-shadow: 0 0 15px currentColor;
}

/* ========================================
   Voice Leaderboard Section
   Premium Glassmorphism Design
======================================== */
.voice-leaderboard {
    padding: var(--section-padding);
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.vlb-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vlb-loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.vlb-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: spin 1s linear infinite;
}

/* Guild Header */
.vlb-guild-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--glass-border);
}

.vlb-guild-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.vlb-guild-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Leaderboard Entry Card */
.vlb-entry {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-20px);
    animation: vlbSlideIn 0.5s ease-out forwards;
}

.vlb-entry:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(153, 51, 255, 0.2);
}

@keyframes vlbSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Rank Badge */
.vlb-rank {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
}

.vlb-rank-1 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    border: none;
}

.vlb-rank-2 {
    background: linear-gradient(135deg, #C0C0C0, #A9A9A9);
    color: #1a1a1a;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
    border: none;
}

.vlb-rank-3 {
    background: linear-gradient(135deg, #CD7F32, #B8860B);
    color: #1a1a1a;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.3);
    border: none;
}

/* Avatar */
.vlb-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    flex-shrink: 0;
    object-fit: cover;
    transition: var(--transition);
}

.vlb-entry:hover .vlb-avatar {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(153, 51, 255, 0.4);
}

/* User Info */
.vlb-user-info {
    flex: 1;
    min-width: 0;
}

.vlb-username {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vlb-time {
    font-size: 13px;
    color: var(--primary-light);
    margin-top: 2px;
}

/* Stats Badges */
.vlb-stats {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.vlb-stat-item {
    text-align: center;
    min-width: 60px;
}

.vlb-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.vlb-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Progress Bar for Time */
.vlb-progress-wrapper {
    flex: 0 0 120px;
}

.vlb-progress-bg {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 4px;
}

.vlb-progress-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 1s ease-out;
    box-shadow: 0 0 8px rgba(153, 51, 255, 0.5);
}

/* Empty State */
.vlb-empty {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-size: 16px;
}

/* Update Timer */
.vlb-footer {
    text-align: center;
    padding-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

.vlb-footer .vlb-live-dot {
    width: 6px;
    height: 6px;
    background: #00ff00;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    animation: blink 1s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .vlb-entry {
        flex-wrap: wrap;
        gap: 10px;
        padding: 14px;
    }

    .vlb-stats {
        width: 100%;
        justify-content: space-around;
        padding-top: 8px;
        border-top: 1px solid var(--glass-border);
    }

    .vlb-progress-wrapper {
        display: none;
    }
    
    .vlb-rank {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .vlb-avatar {
        width: 40px;
        height: 40px;
    }
}

/* Voice Leaderboard Custom Select */
.vlb-custom-select {
    position: relative;
    display: inline-block;
    min-width: 250px;
    font-family: 'Prompt', sans-serif;
    user-select: none;
    text-align: left;
}

.vlb-select-trigger {
    padding: 12px 24px;
    border-radius: 12px;
    background-color: rgba(20, 20, 30, 0.8);
    color: white;
    border: 1px solid rgba(153, 51, 255, 0.4);
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vlb-select-trigger:hover {
    border-color: rgba(153, 51, 255, 0.8);
    box-shadow: 0 4px 20px rgba(153, 51, 255, 0.2);
}

.vlb-select-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 15px;
    margin-top: -4px;
}

.vlb-custom-select.open .vlb-select-arrow {
    transform: rotate(225deg) translate(-3px, -3px);
}

.vlb-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background-color: rgba(30, 30, 45, 0.95);
    border: 1px solid rgba(153, 51, 255, 0.4);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
}

.vlb-custom-select.open .vlb-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vlb-select-option {
    padding: 12px 24px;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

.vlb-select-option:hover {
    background-color: rgba(153, 51, 255, 0.3);
}

.vlb-select-option.selected {
    background-color: rgba(153, 51, 255, 0.5);
    font-weight: bold;
}