/* ==========================================
   QUEEN MEDUSA Bot Website Styles
   Modern Gaming Theme with German UI
   ========================================== */

/* CSS Variables for Theme */
:root {
    /* Primary Colors */
    --primary-purple: #8b5cf6;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    
    /* Accent Colors */
    --gold: #fbbf24;
    --gold-light: #fcd34d;
    --gold-dark: #f59e0b;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Background Colors */
    --bg-dark: #0f0f23;
    --bg-darker: #0a0a1a;
    --bg-card: #1a1a2e;
    --bg-card-hover: #252545;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    /* Border Colors */
    --border-color: #374151;
    --border-light: #4b5563;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.3);
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 4rem 0;
    
    /* Fonts */
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Orbitron', monospace;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-purple);
    text-decoration: none;
}

.nav-logo i {
    margin-right: 0.5rem;
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(139, 92, 246, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleFloat 20s linear infinite;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-purple), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.crown-icon {
    font-size: 3rem;
    margin-right: 1rem;
}

.glow-text {
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.hero-stats-mini {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.mini-stat-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--gold-light);
}

.mini-stat-pill i {
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

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

.bot-avatar {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.avatar-content {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.2), rgba(109, 40, 217, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: var(--shadow-glow);
    overflow: hidden;
}

.bot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.status-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Stats Section */
.stats-section {
    padding: var(--section-padding);
    background: rgba(26, 26, 46, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--gold));
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Overview */
.features-overview {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.section-title i {
    color: var(--gold);
    margin-right: 1rem;
}

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

.feature-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.feature-icon.gaming {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
}

.feature-icon.rpg {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
}

.feature-icon.economy {
    background: linear-gradient(45deg, #fdcb6e, #e17055);
}

.feature-icon.admin {
    background: linear-gradient(45deg, #00b894, #00cec9);
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* How to Use Section */
.how-to-use {
    padding: var(--section-padding);
    background: rgba(26, 26, 46, 0.3);
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-purple), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-content code {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-light);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
}

.page-header-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.page-header-text {
    text-align: left;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.page-header h1 i {
    color: var(--gold);
    margin-right: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-header-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-bot-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4), 0 0 60px rgba(251, 191, 36, 0.2);
    border: 3px solid rgba(139, 92, 246, 0.5);
    animation: float 3s ease-in-out infinite;
}

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

.last-updated {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Why Azerith Section */
.why-azerith {
    padding: var(--section-padding);
    background: rgba(26, 26, 46, 0.3);
}

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

.why-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-purple), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.why-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Highlight Features Section */
.highlight-features {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
}

.highlight-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.highlight-image {
    position: relative;
}

.highlight-bot-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3), 0 0 80px rgba(251, 191, 36, 0.2);
    border: 4px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.highlight-bot-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(139, 92, 246, 0.5), 0 0 100px rgba(251, 191, 36, 0.3);
}

.highlight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.highlight-text h2 i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.highlight-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

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

.highlight-stat-number {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    background: linear-gradient(45deg, var(--primary-purple), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.highlight-stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-list {
    list-style: none;
    margin-bottom: 2rem;
}

.highlight-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-list li i {
    color: var(--success);
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-section h3 i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Animations */
@keyframes particleFloat {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100vw); }
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-darker);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .bot-avatar {
        width: 250px;
        height: 250px;
    }

    .avatar-content {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
.loading-spinner {
    text-align: center;
    padding: 4rem 0;
}

.loading-spinner i {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Additional Styles for Features Page */
.feature-section {
    padding: var(--section-padding);
}

.feature-section.alt {
    background: rgba(26, 26, 46, 0.3);
}

.feature-hero {
    margin-bottom: 4rem;
}

.feature-hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.feature-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.feature-hero-icon.rpg {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
}

.feature-hero-icon.gaming {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
}

.feature-hero-icon.economy {
    background: linear-gradient(45deg, #fdcb6e, #e17055);
}

.feature-hero-icon.admin {
    background: linear-gradient(45deg, #00b894, #00cec9);
}

.feature-hero-icon.fun {
    background: linear-gradient(45deg, #fd79a8, #fdcb6e);
}

.feature-hero-text h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-hero-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.feature-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-detail {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-detail:hover {
    border-color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-light));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
}

.feature-detail h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-detail p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-detail ul {
    list-style: none;
    padding: 0;
}

.feature-detail ul li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.feature-detail ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Games Showcase */
.games-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.game-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.2);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.game-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.game-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Economy Features */
.economy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.economy-feature {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.economy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.job-tag {
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold-light);
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    text-align: center;
    border: 1px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.job-tag:hover {
    background: rgba(251, 191, 36, 0.2);
    transform: scale(1.05);
}

/* Admin Features */
.admin-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.admin-category {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.admin-category h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-category h3 i {
    color: var(--success);
    font-size: 1.25rem;
}

/* Fun Features */
.fun-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.fun-category {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.fun-category h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.fun-category p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.reaction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.reaction-tag {
    background: rgba(253, 121, 168, 0.1);
    color: #fd79a8;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    text-align: center;
    border: 1px solid rgba(253, 121, 168, 0.3);
    transition: all 0.3s ease;
}

.reaction-tag:hover {
    background: rgba(253, 121, 168, 0.2);
    transform: scale(1.05);
}

/* Commands Page Styles */
.commands-controls {
    padding: 2rem 0;
    background: rgba(26, 26, 46, 0.3);
}

.search-filter-bar {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.category-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
}

.commands-section {
    padding: var(--section-padding);
}

.commands-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stats-item {
    text-align: center;
}

.stats-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-purple);
    display: block;
}

.stats-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.command-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.command-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.command-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.command-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
}

.category-badge {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.command-code {
    background: rgba(0, 0, 0, 0.3);
    color: var(--gold-light);
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.command-description {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.command-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.command-aliases {
    color: var(--primary-light);
}

.permission-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
}

.permission-badge.admin {
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold-light);
}

.permission-badge.owner {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-light);
}

.no-results {
    text-align: center;
    padding: 4rem 0;
}

.no-results-content i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.no-results-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.no-results-content p {
    color: var(--text-secondary);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-card);
    margin: 5% auto;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.modal-close {
    color: var(--text-muted);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 2rem;
}

.command-info {
    display: grid;
    gap: 1.5rem;
}

.info-item {
    display: grid;
    gap: 0.5rem;
}

.info-item strong {
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item code {
    background: rgba(0, 0, 0, 0.3);
    color: var(--gold-light);
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.info-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Stats Page Specific Styles */
.stats-main {
    padding: 2rem 0 4rem;
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.stat-card-large {
    background: var(--bg-card);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.stat-card-large.primary::before {
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-light));
}

.stat-card-large.success::before {
    background: linear-gradient(90deg, var(--success), #34d399);
}

.stat-card-large.info::before {
    background: linear-gradient(90deg, var(--info), #60a5fa);
}

.stat-card-large.warning::before {
    background: linear-gradient(90deg, var(--warning), var(--gold-light));
}

.stat-card-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-card-large .stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 1rem;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-purple);
    flex-shrink: 0;
}

.stat-card-large.success .stat-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.stat-card-large.info .stat-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info);
}

.stat-card-large.warning .stat-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.stat-text .stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-change {
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-change.positive {
    color: var(--success);
}

.stat-change.negative {
    color: var(--error);
}

.stat-change.neutral {
    color: var(--text-muted);
}

.stat-progress {
    margin-top: 1rem;
}

.progress-bar {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    height: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-light));
    border-radius: 10px;
    transition: width 1s ease;
}

.progress-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-chart-mini {
    display: flex;
    align-items: end;
    gap: 3px;
    height: 40px;
    margin-top: 1rem;
}

.chart-bar {
    background: linear-gradient(to top, var(--success), #34d399);
    border-radius: 2px;
    flex: 1;
    min-height: 4px;
    transition: height 0.8s ease;
}

.rpg-stats,
.command-categories {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

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

.mini-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--info);
    font-family: var(--font-heading);
}

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

.category-pill {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.last-updated {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Analytics Section */
.analytics-section {
    padding: var(--section-padding);
    background: rgba(26, 26, 46, 0.3);
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.analytics-card {
    background: var(--bg-card);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(139, 92, 246, 0.05);
}

.card-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-header h3 i {
    color: var(--primary-purple);
}

.chart-container {
    padding: 1.5rem;
}

.activity-chart {
    height: 200px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.chart-days {
    display: flex;
    gap: 1rem;
    align-items: end;
    height: 100%;
}

.day-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 40px;
}

.bar-fill {
    width: 100%;
    background: linear-gradient(to top, var(--primary-purple), var(--primary-light));
    border-radius: 4px;
    min-height: 10px;
    transition: height 0.8s ease;
}

.day-bar.active .bar-fill {
    background: linear-gradient(to top, var(--gold), var(--gold-light));
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.day-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.top-games {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.game-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.game-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 120px;
}

.game-info .game-icon {
    font-size: 1.5rem;
}

.game-name {
    color: var(--text-primary);
    font-weight: 500;
}

.game-progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.game-progress .progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.game-progress .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    transition: width 1s ease;
}

.game-count {
    color: var(--text-muted);
    font-size: 0.8rem;
    min-width: 80px;
    text-align: right;
}

/* RPG Analytics */
.rpg-analytics {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}

.rpg-metric {
    text-align: center;
}

.metric-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 0.25rem;
}

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

/* Server Status */
.server-status {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 0.5rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-indicator.online {
    background: var(--success);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status-indicator.good {
    background: var(--info);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.status-indicator.excellent {
    background: var(--gold);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.status-info {
    flex: 1;
}

.status-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.status-value {
    color: var(--text-primary);
    font-weight: 600;
}

/* Leaderboards */
.leaderboards-section {
    padding: var(--section-padding);
}

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

.leaderboard-card {
    background: var(--bg-card);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.leaderboard-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(251, 191, 36, 0.1));
}

.leaderboard-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.25rem;
    text-align: center;
}

.leaderboard-list {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.leader-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.leader-item:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateX(5px);
}

.leader-rank {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.leader-rank.gold {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #8b5a00;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.leader-rank.silver {
    background: linear-gradient(45deg, #c0c0c0, #e8e8e8);
    color: #666;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.5);
}

.leader-rank.bronze {
    background: linear-gradient(45deg, #cd7f32, #e19a5a);
    color: #5d3a00;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.5);
}

.leader-info {
    flex: 1;
}

.leader-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.leader-stat {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Responsive for Stats */
@media (max-width: 768px) {
    .stats-grid-large {
        grid-template-columns: 1fr;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .leaderboards-grid {
        grid-template-columns: 1fr;
    }
    
    .search-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        min-width: auto;
    }
    
    .category-filters {
        justify-content: center;
    }
    
    .commands-stats {
        gap: 2rem;
    }
    
    .stat-card-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .chart-days {
        gap: 0.5rem;
    }
    
    .day-bar {
        min-width: 30px;
    }
    
    .rpg-analytics {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Additional utility animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet and below (max-width: 968px) */
@media screen and (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .bot-avatar {
        width: 250px;
        height: 250px;
    }
    
    .avatar-content {
        width: 180px;
        height: 180px;
    }
    
    .page-header-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header-text {
        text-align: center;
    }
    
    .page-header-image {
        order: -1;
    }
    
    .header-bot-image {
        width: 150px;
        height: 150px;
    }
    
    .highlight-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .highlight-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile devices (max-width: 768px) */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(15, 15, 35, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-large {
        grid-template-columns: 1fr;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .highlight-stat-number {
        font-size: 1.5rem;
    }
    
    .highlight-text h2 {
        font-size: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Small mobile devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .crown-icon {
        font-size: 2rem;
    }
    
    .bot-avatar {
        width: 200px;
        height: 200px;
    }
    
    .avatar-content {
        width: 150px;
        height: 150px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .header-bot-image {
        width: 120px;
        height: 120px;
    }
    
    .highlight-stats {
        grid-template-columns: 1fr;
    }
    
    .highlight-bot-image {
        max-width: 300px;
    }
    
    .feature-pill,
    .mini-stat-pill {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Tablet and below (max-width: 968px) */
@media screen and (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .bot-avatar {
        width: 250px;
        height: 250px;
    }
    
    .avatar-content {
        width: 180px;
        height: 180px;
    }
    
    .page-header-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header-text {
        text-align: center;
    }
    
    .page-header-image {
        order: -1;
    }
    
    .header-bot-image {
        width: 150px;
        height: 150px;
    }
    
    .highlight-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .highlight-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile devices (max-width: 768px) */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(15, 15, 35, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-large {
        grid-template-columns: 1fr;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .highlight-stat-number {
        font-size: 1.5rem;
    }
    
    .highlight-text h2 {
        font-size: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Small mobile devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .crown-icon {
        font-size: 2rem;
    }
    
    .bot-avatar {
        width: 200px;
        height: 200px;
    }
    
    .avatar-content {
        width: 150px;
        height: 150px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .header-bot-image {
        width: 120px;
        height: 120px;
    }
    
    .highlight-stats {
        grid-template-columns: 1fr;
    }
    
    .highlight-bot-image {
        max-width: 300px;
    }
    
    .feature-pill,
    .mini-stat-pill {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}
