
/* ============================================
   MAVERHOST NEO - Premium Gaming Dashboard
   Version: 6.0 - Hyper Modern Design
   ============================================ */

/* CSS Variables - Dark Theme Premium */
:root {
    /* Core Colors */
    --bg-primary: #05050A;
    --bg-secondary: #0A0A14;
    --bg-tertiary: #0F0F1E;
    --bg-card: rgba(15, 15, 30, 0.6);
    --bg-card-solid: #0F0F1E;
    --bg-elevated: rgba(25, 25, 45, 0.9);
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0C8;
    --text-tertiary: #6B6B8F;
    
    /* Neon Accents */
    --neon-cyan: #00F0FF;
    --neon-purple: #A855F7;
    --neon-pink: #EC4899;
    --neon-blue: #3B82F6;
    --neon-green: #10B981;
    --neon-orange: #F59E0B;
    --neon-red: #EF4444;
    
    /* Gradients */
    --gradient-cyber: linear-gradient(135deg, #00F0FF, #A855F7);
    --gradient-neon: linear-gradient(135deg, #00F0FF, #EC4899);
    --gradient-cosmic: linear-gradient(135deg, #A855F7, #3B82F6);
    --gradient-fire: linear-gradient(135deg, #F59E0B, #EF4444);
    --gradient-success: linear-gradient(135deg, #10B981, #34D399);
    
    /* Glow Effects */
    --glow-cyan: 0 0 60px rgba(0, 240, 255, 0.3);
    --glow-purple: 0 0 60px rgba(168, 85, 247, 0.3);
    --glow-pink: 0 0 60px rgba(236, 72, 153, 0.3);
    --glow-green: 0 0 60px rgba(16, 185, 129, 0.3);
    --glow-blue: 0 0 60px rgba(59, 130, 246, 0.3);
    
    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-3xl: 48px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-2xl: 0 32px 64px rgba(0, 0, 0, 0.6);
    
    /* Blur */
    --blur-sm: blur(4px);
    --blur-md: blur(8px);
    --blur-lg: blur(16px);
    --blur-xl: blur(32px);
    --blur-2xl: blur(64px);
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #F5F7FA;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #E8ECF1;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-card-solid: #FFFFFF;
    --bg-elevated: rgba(248, 250, 252, 0.95);
    --text-primary: #1A1A2E;
    --text-secondary: #4A4A6A;
    --text-tertiary: #8A8AAA;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

::selection {
    background: var(--neon-cyan);
    color: var(--bg-primary);
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s;
    box-shadow: 0 0 20px var(--neon-cyan);
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--neon-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.2s ease;
    opacity: 0.4;
    backdrop-filter: blur(2px);
}

/* 3D Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Gradient Orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--neon-cyan), transparent);
    top: -300px;
    right: -300px;
    animation: floatOrb1 25s ease-in-out infinite;
}

.orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--neon-purple), transparent);
    bottom: -250px;
    left: -250px;
    animation: floatOrb2 30s ease-in-out infinite;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-pink), transparent);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseOrb 12s ease-in-out infinite;
}

.orb-4 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--neon-blue), transparent);
    bottom: 20%;
    right: 10%;
    animation: floatOrb3 20s ease-in-out infinite;
}

.orb-5 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--neon-green), transparent);
    top: 15%;
    left: 5%;
    animation: floatOrb4 18s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(100px, 80px) scale(1.1); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-80px, -100px) scale(1.15); }
}

@keyframes floatOrb3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-60px, 60px); }
}

@keyframes floatOrb4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -50px); }
}

@keyframes pulseOrb {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

/* Noise Texture */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.03;
    background: repeating-radial-gradient(circle at 20% 30%, #000, #000 1px, transparent 1px, transparent 3px);
}

[data-theme="light"] .noise {
    opacity: 0.02;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-cyber);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-neon);
}

/* Typography */
.gradient-text {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--bg-card);
    backdrop-filter: var(--blur-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    transform: translateY(0);
}

.navbar.scrolled {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    background: var(--bg-card-solid);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: none;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.logo-icon {
    font-size: 28px;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-base);
    position: relative;
    padding: 8px 0;
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-cyber);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Theme Toggle */
.theme-toggle {
    cursor: pointer;
}

.toggle-track {
    width: 56px;
    height: 30px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    position: relative;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-thumb {
    width: 24px;
    height: 24px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 3px;
    transition: transform var(--transition-bounce);
}

.toggle-thumb::before {
    content: '🌙';
    position: absolute;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity var(--transition-base);
}

[data-theme="light"] .toggle-thumb {
    transform: translateX(26px);
}

[data-theme="light"] .toggle-thumb::before {
    content: '☀️';
}

/* Time Display */
.time-display {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 6px 12px;
    background: var(--bg-elevated);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.time-icon {
    font-size: 14px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-card-solid);
    backdrop-filter: var(--blur-xl);
    z-index: 999;
    padding: 100px 32px 40px;
    transition: right var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.mobile-link:hover {
    color: var(--neon-cyan);
    padding-left: 10px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 32px 80px;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title-accent {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { filter: drop-shadow(0 0 0px var(--neon-cyan)); }
    50% { filter: drop-shadow(0 0 20px var(--neon-cyan)); }
}

.hero-subtitle {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient-cyber);
    color: white;
    border: none;
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.6);
}

.btn-secondary {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: var(--bg-card);
    backdrop-filter: var(--blur-md);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.stat-icon {
    font-size: 36px;
}

.stat-info {
    text-align: left;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

.scroll-text {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-tertiary);
}

/* Section Styles */
.section {
    padding: 100px 32px;
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    font-size: 14px;
    font-weight: 600;
    color: var(--neon-cyan);
    letter-spacing: 4px;
    margin-bottom: 16px;
    display: inline-block;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 20px auto 0;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-cyber);
    margin: 0 auto;
    border-radius: 3px;
}

/* Servers Grid */
.servers-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Server Card */
.server-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: var(--bg-card);
    backdrop-filter: var(--blur-md);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.server-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(0, 240, 255, 0.3);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--gradient-cyber);
    opacity: 0;
    transition: opacity var(--transition-base);
    filter: blur(60px);
}

.server-card:hover .card-glow {
    opacity: 0.15;
}

.card-header {
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.server-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-cyber);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: all var(--transition-base);
}

.server-card:hover .server-icon {
    transform: scale(1.1) rotate(10deg);
}

.server-info {
    flex: 1;
}

.server-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.server-address {
    font-size: 13px;
    color: var(--text-tertiary);
    font-family: monospace;
}

.status-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-dot.online {
    background: var(--neon-green);
    box-shadow: var(--glow-green);
    animation: pulseDotOnline 1.5s infinite;
}

@keyframes pulseDotOnline {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.status-dot.offline {
    background: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red);
}

.status-text {
    font-size: 12px;
    font-weight: 600;
}

.status-text.online {
    color: var(--neon-green);
}

.status-text.offline {
    color: var(--neon-red);
}

.card-body {
    padding: 28px;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.stat-block {
    text-align: center;
    padding: 16px;
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.stat-block:hover {
    transform: translateY(-3px);
    background: rgba(0, 240, 255, 0.1);
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
    color: var(--text-tertiary);
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
}

.version-block {
    padding: 16px;
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 16px;
}

.card-footer {
    padding: 20px 28px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.copy-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.copy-btn:hover {
    background: var(--gradient-cyber);
    border-color: transparent;
    transform: scale(1.02);
    box-shadow: var(--glow-cyan);
}

/* Player Bar */
.player-bar {
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 16px;
}

.player-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width var(--transition-base);
}

/* Charts Section */
.analytics-section {
    background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.03));
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.chart-card {
    background: var(--bg-card);
    backdrop-filter: var(--blur-md);
    border-radius: var(--radius-xl);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
}

.chart-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 240, 255, 0.2);
}

.chart-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chart-icon {
    font-size: 28px;
}

.chart-title {
    font-size: 18px;
    font-weight: 600;
}

.chart-container {
    position: relative;
    height: 300px;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.project-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    backdrop-filter: var(--blur-md);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.project-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-cyber);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all var(--transition-base);
}

.project-card:hover .project-icon {
    transform: scale(1.1) rotate(10deg);
}

.project-info {
    flex: 1;
}

.project-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
}

.project-description {
    font-size: 13px;
    color: var(--text-secondary);
}

.project-link {
    padding: 10px 24px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: var(--radius-full);
    text-decoration: none;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.project-link:hover {
    background: var(--gradient-cyber);
    border-color: transparent;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--bg-card);
    backdrop-filter: var(--blur-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 32px 32px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
    padding: 8px 16px;
    border-radius: var(--radius-full);
}

.footer-link:hover {
    color: var(--neon-cyan);
    transform: translateY(-2px);
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card-solid);
    backdrop-filter: var(--blur-xl);
    border: 1px solid var(--neon-cyan);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--neon-cyan);
    z-index: 10000;
    transition: transform var(--transition-base);
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* Loading Skeleton */
.loading-skeleton {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.skeleton-card {
    width: 500px;
    height: 400px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-2xl);
    animation: skeletonPulse 1.5s ease-in-out infinite;
}

@keyframes skeletonPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.6; }
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--bg-tertiary);
    border-top-color: var(--neon-cyan);
    border-right-color: var(--neon-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

.loader-progress {
    width: 200px;
    height: 2px;
    background: var(--bg-tertiary);
    margin-top: 20px;
    border-radius: 1px;
    overflow: hidden;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--gradient-cyber);
    animation: progress 2s ease-out forwards;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Particle Effect */
.particle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    animation: particleFade 0.8s ease-out forwards;
}

@keyframes particleFade {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--x), var(--y)) scale(0);
    }
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        left: 10px;
        right: 10px;
    }
    
    .nav-container {
        padding: 12px 20px;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .card-header {
        flex-wrap: wrap;
    }
    
    .status-badge {
        align-items: flex-start;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-block {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 16px;
    }
    
    .stat-label {
        margin-bottom: 0;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        flex-direction: column;
        text-align: center;
    }
    
    .project-link {
        white-space: normal;
    }
    
    .toast {
        white-space: normal;
        max-width: 80%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        justify-content: center;
    }
    
    .stat-card {
        width: 100%;
        justify-content: center;
    }
    
    .chart-card {
        padding: 16px;
    }
    
    .time-display {
        display: none;
    }
}