:root {
    /* Enhanced Color Palette */
    --primary: #a855f7;
    --primary-dark: #9333ea;
    --primary-light: #c084fc;
    --primary-glow: rgba(168, 85, 247, 0.4);
    --secondary: #22d3ee;
    --secondary-dark: #06b6d4;
    --secondary-light: #67e8f9;
    --secondary-glow: rgba(34, 211, 238, 0.4);
    --accent: #f472b6;
    --accent-light: #f9a8d4;
    --accent-glow: rgba(244, 114, 182, 0.4);
    --success: #10b981;
    --success-glow: rgba(16, 185, 129, 0.4);
    --warning: #f59e0b;
    --warning-glow: rgba(245, 158, 11, 0.4);
    --danger: #ef4444;
    --danger-glow: rgba(239, 68, 68, 0.4);
    --bg-dark: #09090b;
    --bg-darker: #030305;
    --bg-card: #18181b;
    --bg-card-hover: #27272a;
    --text: #fafafa;
    --text-muted: #a1a1aa;
    --gold: #fbbf24;
    --gold-light: #fde68a;
    --gold-dark: #f59e0b;
    --gold-glow: rgba(251, 191, 36, 0.5);

    /* Enhanced Gradients */
    --gradient: linear-gradient(135deg, #a855f7 0%, #22d3ee 50%, #f472b6 100%);
    --gradient-reverse: linear-gradient(135deg, #f472b6 0%, #22d3ee 50%, #a855f7 100%);
    --gradient-vertical: linear-gradient(180deg, #a855f7 0%, #22d3ee 50%, #f472b6 100%);
    --gradient-radial: radial-gradient(circle, #a855f7 0%, #22d3ee 50%, #f472b6 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(34, 211, 238, 0.2) 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
    --gradient-gold-shine: linear-gradient(135deg, #fde68a 0%, #fbbf24 50%, #f59e0b 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-danger: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    --gradient-discord: linear-gradient(135deg, #5865F2 0%, #7289da 100%);

    /* Glass Effects */
    --glass: rgba(255, 255, 255, 0.03);
    --glass-strong: rgba(255, 255, 255, 0.08);
    --glass-ultra: rgba(255, 255, 255, 0.12);
    --glass-glow: rgba(168, 85, 247, 0.15);

    /* Borders */
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.12);
    --border-glow: rgba(168, 85, 247, 0.3);

    /* Enhanced Shadows */
    --shadow-color: rgba(168, 85, 247, 0.15);
    --shadow-color-strong: rgba(168, 85, 247, 0.3);
    --shadow-gold: rgba(251, 191, 36, 0.2);
    --shadow-gold-strong: rgba(251, 191, 36, 0.4);
    --shadow-success: rgba(16, 185, 129, 0.2);
    --shadow-danger: rgba(239, 68, 68, 0.2);
    --shadow-secondary: rgba(34, 211, 238, 0.2);

    /* Animation Speeds */
    --speed-fast: 0.2s;
    --speed-normal: 0.3s;
    --speed-slow: 0.5s;
    --speed-slower: 0.8s;
}

/* ==================== LIGHT MODE ==================== */
body.light-mode {
    --bg-dark: #f8fafc;
    --bg-darker: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --text: #1e293b;
    --text-muted: #64748b;
    --glass: rgba(0, 0, 0, 0.02);
    --glass-strong: rgba(0, 0, 0, 0.05);
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.12);
    --shadow-color: rgba(168, 85, 247, 0.12);
    --shadow-gold: rgba(251, 191, 36, 0.15);
}

body.light-mode .navbar {
    background: rgba(248, 250, 252, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .navbar.scrolled {
    background: rgba(248, 250, 252, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.light-mode .nav-links a {
    color: #475569;
}

body.light-mode .nav-links a:hover {
    color: #1e293b;
}

body.light-mode .server-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-mode .server-card:hover {
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.15);
}

body.light-mode .search-input {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.15);
    color: #1e293b;
}

body.light-mode .search-input::placeholder {
    color: #94a3b8;
}

body.light-mode .search-input:focus {
    background: #ffffff;
    border-color: var(--primary);
}

body.light-mode .category-btn {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #475569;
}

body.light-mode .category-btn:hover {
    color: #1e293b;
}

body.light-mode .category-btn.active {
    color: white;
}

body.light-mode .footer {
    background: #ffffff;
    border-top-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .package-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .modal-content,
body.light-mode .server-modal-content {
    background: #ffffff;
}

body.light-mode .announcements-banner {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(241, 245, 249, 0.98) 100%);
}

body.light-mode .announcement-item {
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.08), rgba(34, 211, 238, 0.05), transparent);
}

body.light-mode .featured-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .stat {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .comment-card {
    background: rgba(0, 0, 0, 0.02);
}

body.light-mode .admin-modal-content {
    background: #ffffff;
}

body.light-mode .admin-modal-content input {
    background: #f8fafc;
    border-color: rgba(0, 0, 0, 0.15);
    color: #1e293b;
}

body.light-mode ::-webkit-scrollbar-track {
    background: #f1f5f9;
}

body.light-mode ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #a855f7, #22d3ee);
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    z-index: 1000;
    box-shadow: 0 8px 30px var(--shadow-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 12px 40px var(--shadow-color);
}

.theme-toggle .fa-sun {
    display: none;
}

body.light-mode .theme-toggle .fa-sun {
    display: block;
}

body.light-mode .theme-toggle .fa-moon {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection {
    background: var(--primary);
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
    transition: all var(--speed-normal) ease;
    box-shadow: 0 0 10px var(--primary-glow);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-reverse);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: scaleY(1.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(9, 9, 11, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    transition: all var(--speed-slow) cubic-bezier(0.4, 0, 0.2, 1);
    animation: navbarSlideDown 0.6s ease-out;
}

@keyframes navbarSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(9, 9, 11, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px var(--primary-glow);
    border-bottom-color: var(--border-glow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 800;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px var(--primary));
}

.logo i {
    font-size: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-3px) rotate(-3deg);
    }

    75% {
        transform: translateY(-3px) rotate(3deg);
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a:hover::before {
    width: 100%;
}

.discord-btn {
    background: linear-gradient(135deg, #5865F2 0%, #7289da 100%);
    padding: 12px 24px;
    border-radius: 14px;
    color: var(--text) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
    font-weight: 600;
}

.discord-btn::before {
    display: none;
}

.discord-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(88, 101, 242, 0.5);
}

/* Discord Login Button */
.btn-discord-login {
    background: linear-gradient(135deg, #5865F2 0%, #7289da 100%);
    color: white !important;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-discord-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
}

.btn-discord-login i {
    font-size: 1rem;
}

/* User Info in Navbar */
.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    background: var(--glass-strong);
    border-radius: 30px;
    border: 1px solid var(--border);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.user-name {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
}

.user-info .btn-sm {
    padding: 6px 10px;
    font-size: 0.8rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-info .btn-sm:hover {
    background: var(--danger);
    border-color: var(--danger);
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: var(--glass-strong);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(168, 85, 247, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 90% 50%, rgba(34, 211, 238, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 10% 80%, rgba(244, 114, 182, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 50% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    z-index: -2;
    animation: bgPulse 8s ease-in-out infinite, bgMove 20s ease-in-out infinite;
    filter: blur(1px);
}

@keyframes bgPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.08);
    }
}

@keyframes bgMove {

    0%,
    100% {
        background-position: 0% 0%, 100% 0%, 0% 100%, 50% 50%;
    }

    25% {
        background-position: 20% 10%, 80% 20%, 10% 90%, 60% 40%;
    }

    50% {
        background-position: 40% 20%, 60% 40%, 20% 80%, 40% 60%;
    }

    75% {
        background-position: 20% 10%, 80% 20%, 10% 90%, 60% 40%;
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(3px 3px at 10% 20%, rgba(168, 85, 247, 0.8) 50%, transparent 50%),
        radial-gradient(2px 2px at 30% 60%, rgba(34, 211, 238, 0.7) 50%, transparent 50%),
        radial-gradient(2.5px 2.5px at 50% 30%, rgba(244, 114, 182, 0.7) 50%, transparent 50%),
        radial-gradient(2px 2px at 70% 70%, rgba(251, 191, 36, 0.6) 50%, transparent 50%),
        radial-gradient(3px 3px at 90% 40%, rgba(168, 85, 247, 0.8) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 20% 50%, rgba(34, 211, 238, 0.5) 50%, transparent 50%),
        radial-gradient(2px 2px at 80% 80%, rgba(244, 114, 182, 0.5) 50%, transparent 50%);
    background-size: 300px 300px;
    animation: particlesFloat 25s linear infinite, particlesTwinkle 3s ease-in-out infinite;
}

.particles::after {
    animation-delay: -12s;
    opacity: 0.6;
    background-size: 350px 350px;
}

@keyframes particlesFloat {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    50% {
        transform: translateY(-125px) translateX(25px) rotate(180deg);
    }

    100% {
        transform: translateY(-250px) translateX(50px) rotate(360deg);
    }
}

@keyframes particlesTwinkle {

    0%,
    100% {
        opacity: 0.6;
        filter: brightness(1);
    }

    50% {
        opacity: 1;
        filter: brightness(1.5);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientFlow 4s ease infinite, titleReveal 1s ease-out, textGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px var(--primary-glow));
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    animation: gradientFlow 4s ease infinite reverse;
}

@keyframes textGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 30px var(--primary-glow)) brightness(1);
    }

    50% {
        filter: drop-shadow(0 0 50px var(--primary-glow)) brightness(1.2);
    }
}

@keyframes gradientFlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 600px;
    animation: fadeSlideUp 1s ease-out 0.3s backwards;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeSlideUp 1s ease-out 0.5s backwards;
}

.btn {
    padding: 16px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient);
    background-size: 200% 200%;
    color: var(--text);
    box-shadow: 0 8px 30px var(--shadow-color);
    animation: gradientFlow 3s ease infinite;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 45px var(--shadow-color);
}

.btn-pulse {
    animation: btnPulse 2.5s ease-in-out infinite, gradientFlow 3s ease infinite;
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px var(--shadow-color);
    }

    50% {
        box-shadow: 0 8px 50px var(--shadow-color), 0 0 80px rgba(168, 85, 247, 0.3);
    }
}

.btn-secondary {
    background: var(--glass-strong);
    color: var(--text);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    box-shadow: 0 8px 30px var(--shadow-color);
    transform: translateY(-5px);
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2 0%, #7289da 100%);
    color: var(--text);
    font-size: 1.15rem;
    padding: 18px 45px;
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(88, 101, 242, 0.5);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 70px;
    animation: fadeSlideUp 1s ease-out 0.7s backwards;
}

.stat {
    text-align: center;
    padding: 25px 35px;
    background: var(--glass-strong);
    border-radius: 20px;
    border: 1px solid var(--border);
    backdrop-filter: blur(15px);
    transition: all var(--speed-slow) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: statFadeIn 0.8s ease-out backwards;
}

@keyframes statFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform var(--speed-slow) ease;
    animation: gradientFlow 3s ease infinite;
}

.stat::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient);
    border-radius: 20px;
    opacity: 0;
    filter: blur(12px);
    transition: opacity var(--speed-normal) ease;
    z-index: -1;
}

.stat:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 25px 60px var(--shadow-color-strong), 0 0 30px var(--primary-glow);
}

.stat:hover::before {
    transform: scaleX(1);
}

.stat:hover::after {
    opacity: 0.4;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease infinite, numberPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

@keyframes numberPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 5px;
}

.servers-section {
    padding: 120px 0;
    position: relative;
}

.servers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.lifetime-badge {
    display: inline-block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.lifetime-badge::after {
    content: '✨';
    position: absolute;
    right: -25px;
    animation: sparkle 1.5s ease infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.search-container {
    max-width: 550px;
    margin: 0 auto 45px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 18px 55px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 18px;
    color: var(--text);
    font-family: inherit;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--shadow-color), 0 0 0 4px rgba(168, 85, 247, 0.1);
    background: var(--bg-card-hover);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-icon {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.search-input:focus~.search-icon {
    color: var(--primary);
}

.search-clear {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-strong);
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    display: none;
    transition: all 0.3s ease;
}

.search-clear:hover {
    color: var(--danger);
    background: rgba(239, 68, 68, 0.2);
}

.search-clear.visible {
    display: flex;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 55px;
}

.category-btn {
    padding: 14px 30px;
    border: 1px solid var(--border);
    background: var(--glass);
    color: var(--text-muted);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--speed-slow) cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all var(--speed-slower) ease;
    z-index: -1;
}

.category-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient);
    border-radius: 50px;
    opacity: 0;
    filter: blur(8px);
    transition: opacity var(--speed-normal) ease;
    z-index: -2;
}

.category-btn:hover {
    border-color: var(--primary);
    color: var(--text);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.category-btn:hover::after {
    opacity: 0.3;
}

.category-btn.active {
    background: var(--gradient);
    background-size: 200% 200%;
    border-color: transparent;
    color: var(--text);
    box-shadow: 0 8px 30px var(--shadow-color-strong), 0 0 20px var(--primary-glow);
    transform: translateY(-4px) scale(1.05);
    animation: gradientFlow 3s ease infinite, activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {

    0%,
    100% {
        box-shadow: 0 8px 30px var(--shadow-color-strong), 0 0 20px var(--primary-glow);
    }

    50% {
        box-shadow: 0 10px 40px var(--shadow-color-strong), 0 0 30px var(--primary-glow);
    }
}

.vip-section {
    margin-bottom: 70px;
}

.vip-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    margin-bottom: 30px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-title i {
    -webkit-text-fill-color: var(--gold);
    animation: crownFloat 2s ease-in-out infinite;
}

@keyframes crownFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.normal-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--text);
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.server-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--speed-slow) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: cardFadeIn 0.6s ease-out backwards;
    cursor: pointer;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-subtle);
    opacity: 0;
    transition: opacity var(--speed-slow) ease;
    z-index: 0;
}

.server-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient);
    border-radius: 24px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity var(--speed-normal) ease;
    z-index: -1;
}

.server-card:hover {
    transform: translateY(-15px) scale(1.03) rotateY(2deg);
    border-color: var(--primary);
    box-shadow: 0 30px 80px var(--shadow-color-strong), 0 0 40px var(--primary-glow);
}

.server-card:hover::before {
    opacity: 1;
}

.server-card:hover::after {
    opacity: 0.4;
}

.server-card.vip {
    border-color: rgba(251, 191, 36, 0.4);
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(251, 191, 36, 0.12) 100%);
    position: relative;
    animation: vipCardGlow 3s ease-in-out infinite;
}

.server-card.vip::after {
    background: var(--gradient-gold);
}

@keyframes vipCardGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
    }
}

.server-card.vip:hover {
    border-color: var(--gold);
    box-shadow: 0 30px 80px var(--shadow-gold-strong), 0 0 50px var(--gold-glow);
    transform: translateY(-15px) scale(1.05) rotateY(3deg);
}

.server-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.server-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--speed-slower) cubic-bezier(0.4, 0, 0.2, 1), filter var(--speed-slow) ease;
    filter: brightness(0.9) contrast(1.1);
}

.server-card:hover .server-image img {
    transform: scale(1.2) rotate(1deg);
    filter: brightness(1.1) contrast(1.2) saturate(1.2);
}

.vip-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-gold-shine);
    color: #000;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 5px 20px var(--shadow-gold), 0 0 15px var(--gold-glow);
    animation: badgePulse 2s ease-in-out infinite, badgeShine 3s ease-in-out infinite;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 5px 20px var(--shadow-gold), 0 0 15px var(--gold-glow);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 8px 35px var(--shadow-gold-strong), 0 0 25px var(--gold-glow);
        transform: scale(1.05);
    }
}

@keyframes badgeShine {

    0%,
    100% {
        background: var(--gradient-gold-shine);
    }

    50% {
        background: linear-gradient(135deg, #fde68a 0%, #fbbf24 50%, #f59e0b 100%);
    }
}

.server-content {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.server-category {
    display: inline-block;
    background: var(--glass-strong);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary-light);
    margin-bottom: 12px;
    border: 1px solid var(--border);
    font-weight: 500;
    transition: all var(--speed-normal) ease;
    position: relative;
    overflow: hidden;
}

.server-category::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-subtle);
    opacity: 0;
    transition: opacity var(--speed-fast) ease;
    z-index: -1;
}

.server-category:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 3px 15px var(--shadow-color);
}

.server-category:hover::before {
    opacity: 1;
}

.server-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.server-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.server-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15) 0%, rgba(88, 101, 242, 0.05) 100%);
    color: #7289da;
    text-decoration: none;
    font-weight: 700;
    transition: all var(--speed-slow) cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 22px;
    border-radius: 12px;
    border: 1px solid rgba(88, 101, 242, 0.2);
    position: relative;
    overflow: hidden;
}

.server-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-discord);
    opacity: 0;
    transition: opacity var(--speed-normal) ease;
    z-index: -1;
}

.server-link::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-discord);
    border-radius: 12px;
    opacity: 0;
    filter: blur(8px);
    transition: opacity var(--speed-normal) ease;
    z-index: -2;
}

.server-link:hover {
    background: var(--gradient-discord);
    color: white;
    border-color: transparent;
    transform: translateX(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.5), 0 0 20px rgba(88, 101, 242, 0.4);
}

.server-link:hover::before {
    opacity: 1;
}

.server-link:hover::after {
    opacity: 0.5;
}

.no-servers {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.no-servers i {
    font-size: 5rem;
    margin-bottom: 25px;
    opacity: 0.2;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.no-servers p {
    font-size: 1.2rem;
}

.packages-section {
    padding: 120px 0;
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    position: relative;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    max-width: 850px;
    margin: 0 auto;
}

.package-card {
    background: var(--bg-card);
    border-radius: 28px;
    padding: 45px 35px;
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--speed-slower) cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: cardFadeIn 0.8s ease-out backwards;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform var(--speed-slow) ease;
    animation: gradientFlow 3s ease infinite;
}

.package-card::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient);
    border-radius: 28px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity var(--speed-normal) ease;
    z-index: -1;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 35px 90px var(--shadow-color-strong), 0 0 50px var(--primary-glow);
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover::after {
    opacity: 0.5;
}

.package-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
    animation: iconFloat 4s ease-in-out infinite, iconRotate 8s linear infinite;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    filter: drop-shadow(0 0 15px var(--primary-glow));
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    25% {
        transform: translateY(-8px) scale(1.05) rotate(5deg);
    }

    50% {
        transform: translateY(-15px) scale(1.1) rotate(0deg);
    }

    75% {
        transform: translateY(-8px) scale(1.05) rotate(-5deg);
    }
}

@keyframes iconRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.package-card.vip {
    border-color: rgba(251, 191, 36, 0.3);
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(251, 191, 36, 0.1) 100%);
}

.package-card.vip::before {
    background: var(--gradient-gold);
}

.package-card.vip:hover {
    border-color: var(--gold);
    box-shadow: 0 30px 70px var(--shadow-gold);
}

.package-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: #000;
    padding: 8px 28px;
    border-radius: 0 0 20px 20px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 5px 20px var(--shadow-gold);
}

.package-header {
    text-align: center;
    margin-bottom: 35px;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
    font-weight: 800;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.package-card.vip .price {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price span {
    font-size: 1.1rem;
    font-weight: 500;
    -webkit-text-fill-color: var(--text-muted);
}

.package-features {
    list-style: none;
    margin-bottom: 35px;
}

.package-features li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.package-features li:hover {
    padding-right: 12px;
    background: var(--glass);
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li.included i {
    color: var(--success);
    font-size: 1.1rem;
}

.package-features li.excluded {
    color: var(--text-muted);
    opacity: 0.5;
}

.package-features li.excluded i {
    color: var(--danger);
}

.package-features li.vip-feature {
    color: var(--gold);
    font-weight: 600;
}

.package-features li.vip-feature i {
    color: var(--gold);
}

.package-card .btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
}

.btn-glow {
    animation: btnGlow 2.5s ease-in-out infinite, gradientFlow 3s ease infinite;
}

@keyframes btnGlow {

    0%,
    100% {
        box-shadow: 0 8px 30px var(--shadow-color);
    }

    50% {
        box-shadow: 0 8px 50px var(--shadow-color), 0 0 80px rgba(168, 85, 247, 0.3);
    }
}

.cta-section {
    padding: 120px 0;
}

.cta-content {
    text-align: center;
    background: var(--bg-card);
    border-radius: 32px;
    padding: 80px 50px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 40%);
    animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-10%, -10%) scale(1.2);
        opacity: 1;
    }
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 18px;
    position: relative;
    font-weight: 900;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 35px;
    position: relative;
    font-size: 1.2rem;
}

.cta-content .btn {
    position: relative;
}

.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 70px 0 35px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 18px;
    font-size: 1rem;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 22px;
    font-size: 1.15rem;
    color: var(--primary-light);
    font-weight: 700;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all var(--speed-normal) cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    position: relative;
    padding-right: 5px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    right: -15px;
    opacity: 0;
    transition: all var(--speed-fast) ease;
    color: var(--primary);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(-8px);
    padding-right: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    right: 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--glass-strong);
    border-radius: 14px;
    color: var(--text);
    font-size: 1.3rem;
    transition: all var(--speed-slow) cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-discord);
    opacity: 0;
    transition: opacity var(--speed-normal) ease;
    z-index: -1;
}

.footer-social a::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-discord);
    border-radius: 14px;
    opacity: 0;
    filter: blur(10px);
    transition: opacity var(--speed-normal) ease;
    z-index: -2;
}

.footer-social a:hover {
    background: var(--gradient-discord);
    transform: translateY(-8px) rotate(10deg) scale(1.1);
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.5), 0 0 20px rgba(88, 101, 242, 0.4);
    color: white;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a:hover::after {
    opacity: 0.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 35px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.admin-btn {
    background: var(--glass-strong);
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.admin-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: rotate(180deg);
    box-shadow: 0 0 20px var(--shadow-color);
}

.admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.admin-modal.active {
    display: flex;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.admin-modal-content {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 45px;
    max-width: 420px;
    width: 100%;
    border: 1px solid var(--border);
    text-align: center;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.admin-modal-content h3 {
    margin-bottom: 30px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 800;
}

.admin-modal-content h3 i {
    color: var(--primary);
    font-size: 1.4rem;
}

.admin-modal-content input {
    width: 100%;
    padding: 16px 20px;
    background: var(--glass-strong);
    border: 2px solid var(--border);
    border-radius: 14px;
    color: var(--text);
    font-family: inherit;
    font-size: 1.05rem;
    margin-bottom: 22px;
    transition: all 0.4s ease;
}

.admin-modal-content input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--shadow-color);
}

.admin-modal-buttons {
    display: flex;
    gap: 12px;
}

.admin-modal-buttons .btn {
    flex: 1;
    padding: 14px 20px;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-12px);
    }

    40% {
        transform: translateX(12px);
    }

    60% {
        transform: translateX(-8px);
    }

    80% {
        transform: translateX(8px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(9, 9, 11, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 25px;
        gap: 18px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-stats {
        flex-direction: column;
        gap: 18px;
        width: 100%;
        max-width: 280px;
    }

    .stat {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 18px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .servers-grid {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }
}

.featured-section {
    padding: 100px 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.featured-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s ease;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-gold);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-gold);
    color: #000;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 5px 20px var(--shadow-gold);
}

.featured-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.featured-info {
    padding: 25px;
}

.featured-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.featured-rating {
    margin-bottom: 12px;
}

.featured-rating .stars {
    color: var(--gold);
}

.featured-rating span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.featured-stats {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.featured-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-loading {
    padding: 60px;
    text-align: center;
    color: var(--text-muted);
    font-size: 2rem;
}

.no-featured {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.server-rating {
    margin: 8px 0;
}

.server-rating .stars {
    color: var(--gold);
    font-size: 0.9rem;
}

.server-rating small {
    color: var(--text-muted);
    margin-right: 5px;
}

.server-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.server-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars i {
    margin-left: 2px;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-strong);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--border);
}

.user-menu span {
    font-weight: 600;
    color: var(--text);
}

.user-menu a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.user-menu a:hover {
    color: var(--danger);
}

.hidden {
    display: none !important;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.auth-modal,
.server-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.auth-modal.active,
.server-modal.active {
    display: flex;
    animation: modalFadeIn 0.4s ease;
}

.auth-modal-content {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    max-width: 420px;
    width: 100%;
    border: 1px solid var(--border);
    position: relative;
}

.server-modal-content {
    background: var(--bg-card);
    border-radius: 24px;
    max-width: 650px;
    width: 100%;
    border: 1px solid var(--border);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--glass-strong);
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--speed-normal) cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    position: relative;
}

.modal-close::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-danger);
    border-radius: 50%;
    opacity: 0;
    filter: blur(8px);
    transition: opacity var(--speed-normal) ease;
    z-index: -1;
}

.modal-close:hover {
    background: var(--danger);
    border-color: var(--danger);
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 20px var(--shadow-danger);
}

.modal-close:hover::before {
    opacity: 0.6;
}

.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.auth-tab {
    flex: 1;
    padding: 14px;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-tab.active {
    background: var(--gradient);
    border-color: transparent;
    color: white;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form .form-group {
    margin: 0;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.auth-form .form-group label i {
    margin-left: 8px;
    color: var(--primary);
}

.auth-form .form-group input {
    width: 100%;
    padding: 14px 18px;
    background: var(--glass-strong);
    border: 2px solid var(--border);
    border-radius: 14px;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--shadow-color);
}

.form-error {
    color: var(--danger);
    font-size: 0.9rem;
    text-align: center;
    min-height: 20px;
}

.server-detail-header {
    position: relative;
}

.server-detail-header img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.server-detail-header .vip-badge.large {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1rem;
    padding: 10px 22px;
}

.server-detail-body {
    padding: 30px;
}

.server-detail-body h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.rating-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--glass);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.current-rating .stars {
    font-size: 1.3rem;
    color: var(--gold);
}

.current-rating span {
    font-size: 1.5rem;
    font-weight: 800;
    margin-right: 8px;
}

.current-rating small {
    color: var(--text-muted);
}

.rate-server {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rate-server span {
    color: var(--text-muted);
}

.star-rating {
    display: flex;
    gap: 5px;
    font-size: 1.5rem;
    cursor: pointer;
}

.star-rating i {
    color: var(--text-muted);
    transition: all var(--speed-fast) cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    filter: drop-shadow(0 0 5px transparent);
}

.star-rating i:hover {
    color: var(--gold);
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 0 10px var(--gold-glow));
    animation: starTwinkle 0.5s ease;
}

.star-rating i.fas {
    color: var(--gold);
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px var(--gold-glow));
    animation: starGlow 2s ease-in-out infinite;
}

@keyframes starTwinkle {

    0%,
    100% {
        transform: scale(1.3) rotate(15deg);
    }

    50% {
        transform: scale(1.4) rotate(20deg);
    }
}

@keyframes starGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 8px var(--gold-glow));
    }

    50% {
        filter: drop-shadow(0 0 15px var(--gold-glow));
    }
}

.server-full-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.server-detail-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--glass);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-item span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
}

.stat-item label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.comments-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.comments-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comments-section h3 i {
    color: var(--secondary);
}

.comment-form {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--glass-strong);
    border: 2px solid var(--border);
    border-radius: 14px;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.comment-form textarea {
    min-height: 100px;
    resize: vertical;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment {
    background: var(--glass);
    padding: 18px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all var(--speed-normal) ease;
    animation: commentFadeIn 0.5s ease-out backwards;
    position: relative;
    overflow: hidden;
}

.comment::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient);
    transform: scaleY(0);
    transition: transform var(--speed-normal) ease;
}

@keyframes commentFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.comment:hover {
    background: var(--glass-strong);
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.comment:hover::before {
    transform: scaleY(1);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-header strong {
    color: var(--primary-light);
}

.comment-header small {
    color: var(--text-muted);
}

.comment p {
    color: var(--text-muted);
    line-height: 1.6;
}

.no-comments {
    text-align: center;
    color: var(--text-muted);
    padding: 30px;
    background: var(--glass);
    border-radius: 16px;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-12px);
    }

    40% {
        transform: translateX(12px);
    }

    60% {
        transform: translateX(-8px);
    }

    80% {
        transform: translateX(8px);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==================== MAINTENANCE OVERLAY ==================== */
.maintenance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #09090b 0%, #1a1a2e 100%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.maintenance-overlay.hidden {
    display: none;
}

.maintenance-overlay i {
    font-size: 5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    animation: spin 3s linear infinite;
}

.maintenance-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.maintenance-overlay p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* ==================== SERVER BADGES ==================== */
.server-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-verified {
    background: var(--gradient-success);
    color: white;
    box-shadow: 0 3px 15px var(--shadow-success);
    animation: badgeShimmer 3s ease-in-out infinite;
}

.badge-featured {
    background: var(--gradient-gold-shine);
    background-size: 200% 200%;
    color: #000;
    box-shadow: 0 3px 15px var(--shadow-gold);
    animation: gradientFlow 3s ease infinite, badgeShimmer 3s ease-in-out infinite;
}

.badge-new {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 3px 15px rgba(59, 130, 246, 0.3);
    animation: badgeShimmer 3s ease-in-out infinite;
}

.badge-hot {
    background: var(--gradient-danger);
    color: white;
    box-shadow: 0 3px 15px var(--shadow-danger);
    animation: badgeShimmer 3s ease-in-out infinite, hotPulse 2s ease-in-out infinite;
}

@keyframes badgeShimmer {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }
}

@keyframes hotPulse {

    0%,
    100% {
        box-shadow: 0 3px 15px var(--shadow-danger);
    }

    50% {
        box-shadow: 0 5px 25px var(--shadow-danger), 0 0 15px var(--danger-glow);
    }
}

/* ==================== ADVANCED SEARCH ==================== */
.advanced-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-strong);
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.filter-group label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.filter-group select,
.filter-group input {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 12px;
    border-radius: 8px;
    font-family: inherit;
}

/* ==================== REPORT BUTTON ==================== */
.report-btn {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--danger);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.report-btn:hover {
    background: var(--danger);
    color: white;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(9, 9, 11, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat {
        padding: 20px 25px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .servers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .categories {
        gap: 8px;
    }

    .category-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .modal-content {
        width: 95%;
        margin: 10px;
        max-height: 90vh;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .advanced-filters {
        flex-direction: column;
    }

    .filter-group {
        width: 100%;
        justify-content: space-between;
    }

    .announcement-item {
        flex-direction: column;
        text-align: center;
    }

    .announcement-countdown {
        justify-content: center;
    }

    .discord-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .user-info {
        padding: 6px 12px;
    }

    .user-name {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .countdown-box {
        padding: 6px 8px;
        min-width: 40px;
    }

    .countdown-value {
        font-size: 1rem;
    }

    .server-image {
        height: 150px;
    }
}

/* ==================== ABOUT US SECTION ==================== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.03) 50%, transparent 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--speed-slow) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: cardFadeIn 0.8s ease-out backwards;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform var(--speed-slow) ease;
    animation: gradientFlow 3s ease infinite;
}

.about-card::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient);
    border-radius: 24px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity var(--speed-normal) ease;
    z-index: -1;
}

.about-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 30px 70px var(--shadow-color-strong), 0 0 50px var(--primary-glow);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover::after {
    opacity: 0.5;
}

.about-card.featured {
    border-color: rgba(34, 211, 238, 0.3);
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(34, 211, 238, 0.08) 100%);
}

.about-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.stats-highlight {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 40px;
    background: var(--glass-strong);
    border-radius: 24px;
    border: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-highlight {
        gap: 30px;
        padding: 25px;
    }

    .stat-value {
        font-size: 2rem;
    }
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.02) 0%, transparent 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.feature-icon.lightning {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.feature-icon.shield {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.feature-icon.money {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== VALUE BADGES ==================== */
.value-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.value-badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeSlideUp 1s ease-out 0.4s backwards;
}

.value-badge i {
    font-size: 1.1rem;
}

/* ==================== CTA BUTTON ==================== */
.btn-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 1.2rem;
    padding: 18px 45px;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
    border: none;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.5);
}

/* ==================== TRENDING SECTION ==================== */
.trending-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.03) 0%, transparent 100%);
}

.trending-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.trending-title i {
    color: #ef4444;
    animation: pulse 1.5s ease-in-out infinite;
}

.trending-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--glass);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text);
}

@media (max-width: 768px) {
    .value-badges {
        flex-direction: column;
        align-items: center;
    }

    .value-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .btn-cta {
        font-size: 1rem;
        padding: 15px 35px;
    }
}

/* ==================== MY SERVERS DASHBOARD ==================== */
.my-server-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.my-server-card:hover {
    border-color: var(--primary);
    transform: translateX(-5px);
}

.my-server-image {
    flex-shrink: 0;
}

.my-server-image img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.my-server-info {
    flex-grow: 1;
}

.my-server-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.my-server-category {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.my-server-stats {
    display: flex;
    gap: 15px;
}

.stat-box {
    background: var(--glass-strong);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
}

.stat-box i {
    display: block;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-box span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 3px;
}

@media (max-width: 768px) {
    .my-server-card {
        flex-direction: column;
        text-align: center;
    }

    .my-server-stats {
        width: 100%;
        justify-content: center;
    }

    .stat-box {
        padding: 10px 15px;
        min-width: 60px;
    }
}

/* ==================== ENHANCED MOBILE RESPONSIVENESS ==================== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 15px 50px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-stats {
        margin-top: 40px;
        gap: 12px;
    }

    .stat {
        padding: 15px 20px;
        border-radius: 14px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Featured Section Mobile */
    .featured-section {
        padding: 60px 0;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .featured-card {
        border-radius: 18px;
    }

    .featured-image {
        height: 150px;
    }

    .featured-info {
        padding: 18px;
    }

    .featured-info h3 {
        font-size: 1.2rem;
    }

    .featured-stats {
        flex-wrap: wrap;
        gap: 10px;
    }

    .featured-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    /* Servers Section Mobile */
    .servers-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .section-desc {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .search-container {
        margin-bottom: 25px;
    }

    .search-input {
        padding: 14px 45px;
        font-size: 0.95rem;
        border-radius: 14px;
    }

    .categories {
        margin-bottom: 35px;
        gap: 8px;
        padding: 0 5px;
    }

    .category-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 25px;
    }

    .vip-title,
    .normal-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .servers-grid {
        gap: 15px;
    }

    .server-card {
        border-radius: 18px;
    }

    .server-image {
        height: 160px;
    }

    .server-content {
        padding: 18px;
    }

    .server-name {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .server-desc {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }

    .server-link {
        padding: 10px 18px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .server-actions {
        flex-direction: column;
        gap: 10px;
    }

    /* Modal Mobile */
    .server-modal-content {
        width: 95%;
        margin: 10px;
        border-radius: 18px;
        max-height: 85vh;
    }

    .server-detail-header img {
        height: 180px;
    }

    .server-detail-body {
        padding: 20px;
    }

    .server-detail-body h2 {
        font-size: 1.4rem;
    }

    .rating-section {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .rate-server {
        flex-direction: column;
        gap: 8px;
    }

    .star-rating {
        font-size: 1.8rem;
    }

    .server-detail-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-item i {
        font-size: 1.2rem;
    }

    .stat-item span {
        font-size: 1.4rem;
    }

    .stat-item label {
        font-size: 0.8rem;
    }

    /* Packages Mobile */
    .packages-section {
        padding: 60px 0;
    }

    .packages-grid {
        gap: 20px;
        padding: 0 10px;
    }

    .package-card {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .package-icon {
        font-size: 3rem;
    }

    .package-header h3 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 3rem;
    }

    .package-features li {
        padding: 12px 0;
        font-size: 0.95rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 50px 0 25px;
    }

    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-brand .logo {
        font-size: 1.3rem;
    }

    /* Login Overlay Mobile */
    .login-box {
        padding: 35px 25px;
        border-radius: 20px;
        width: 95%;
    }

    .login-box .logo-icon {
        font-size: 3rem;
    }

    .login-box h1 {
        font-size: 1.6rem;
    }

    .login-box p {
        font-size: 0.9rem;
    }

    .discord-login-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .login-features {
        gap: 15px;
    }

    .login-feature {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-buttons .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .server-detail-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .stat-item span {
        font-size: 1.2rem;
    }

    .featured-stats {
        font-size: 0.8rem;
    }

    .login-features {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.3rem;
    }

    .category-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .server-image {
        height: 140px;
    }
}

/* ==================== SHARE BUTTON STYLES ==================== */
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.share-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.share-btn i {
    font-size: 1rem;
}

.share-btn-small {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    z-index: 5;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(5px);
}

.share-btn-small:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.share-btn-small i {
    font-size: 0.85rem;
}

/* Server Actions Container */
.server-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.server-actions .server-link {
    flex: 1;
}

/* Detail Modal Share Section */
.share-section {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.share-section .btn {
    flex: 1;
}

/* ==================== TOAST NOTIFICATION ==================== */
.toast-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--primary);
    color: var(--text);
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: toastSlideUp 0.4s ease, toastFadeOut 0.4s ease 2.6s forwards;
    pointer-events: auto;
}

.toast i {
    color: var(--success);
    font-size: 1.2rem;
}

.toast.error i {
    color: var(--danger);
}

@keyframes toastSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastFadeOut {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .toast-container {
        bottom: 20px;
        width: 90%;
    }

    .toast {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .share-section {
        flex-direction: column;
    }

    .share-btn-small {
        width: 32px;
        height: 32px;
    }
}

/* ==================== COMMENTS SECTION ==================== */
.comments-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.comments-header h3 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comments-header h3 i {
    color: var(--secondary);
}

.comment-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.comment-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--glass-strong);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    resize: none;
    min-height: 45px;
    transition: all 0.3s ease;
}

.comment-input:focus {
    outline: none;
    border-color: var(--primary);
}

.comment-submit {
    padding: 12px 20px;
    background: var(--gradient);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.comment-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.comment-item {
    background: var(--glass);
    padding: 15px;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.comment-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-username {
    font-weight: 700;
    color: var(--primary-light);
}

.comment-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.comment-content {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.comment-actions {
    display: flex;
    gap: 15px;
    margin-top: 12px;
}

.like-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 20px;
}

.like-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.like-btn.liked {
    color: #ef4444;
}

.like-btn.liked i {
    animation: heartBeat 0.5s ease;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

.no-comments {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
}

/* ==================== FAVORITES BUTTON ==================== */
.favorite-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--text-muted);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.favorite-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.favorite-btn.favorited {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border-color: #ef4444;
}

.favorite-btn.favorited {
    animation: heartBeat 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.favorite-btn.favorited i {
    animation: heartBeat 0.6s cubic-bezier(0.4, 0, 0.2, 1), heartGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--danger-glow));
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(1.1);
    }

    75% {
        transform: scale(1.2);
    }
}

@keyframes heartGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px var(--danger-glow));
    }

    50% {
        filter: drop-shadow(0 0 20px var(--danger-glow));
    }
}

/* ==================== SERVER BADGES ==================== */
.server-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-verified {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.badge-hot {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.badge-trending {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

/* ==================== ADVANCED FILTERS ==================== */
.filters-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--glass);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label {
    color: var(--text-muted);
    font-size: 0.85rem;
    white-space: nowrap;
}

.filter-select {
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-checkbox:hover {
    border-color: var(--primary);
}

.filter-checkbox.active {
    background: rgba(168, 85, 247, 0.2);
    border-color: var(--primary);
    color: var(--primary);
}

.filter-checkbox input {
    display: none;
}

/* ==================== TRENDING TODAY ==================== */
.trending-today-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.05) 0%, transparent 100%);
}

.trending-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.trending-header h2 {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.trending-header i {
    color: #ef4444;
    animation: firePulse 1s ease-in-out infinite;
}

@keyframes firePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.trending-badge-header {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ==================== SOCIAL SHARE BUTTONS ==================== */
.social-share {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn.twitter {
    background: #1DA1F2;
}

.social-btn.twitter:hover {
    box-shadow: 0 5px 20px rgba(29, 161, 242, 0.4);
}

.social-btn.whatsapp {
    background: #25D366;
}

.social-btn.whatsapp:hover {
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.social-btn.telegram {
    background: #0088cc;
}

.social-btn.telegram:hover {
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.4);
}

.social-btn.copy {
    background: var(--primary);
}

.social-btn.copy:hover {
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* ==================== DARK/LIGHT MODE TOGGLE ==================== */
.theme-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    background-size: 200% 200%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 5px 25px var(--shadow-color), 0 0 15px var(--primary-glow);
    transition: all var(--speed-slow) cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    animation: gradientFlow 3s ease infinite, themeFloat 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0;
    filter: blur(15px);
    transition: opacity var(--speed-normal) ease;
    z-index: -1;
}

@keyframes themeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.theme-toggle:hover {
    transform: scale(1.15) rotate(180deg);
    box-shadow: 0 8px 35px var(--shadow-color-strong), 0 0 25px var(--primary-glow);
}

.theme-toggle:hover::before {
    opacity: 0.6;
}

/* Light Mode */
body.light-mode {
    --bg-dark: #f5f5f7;
    --bg-darker: #e5e5e7;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f0f2;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --glass: rgba(0, 0, 0, 0.03);
    --glass-strong: rgba(0, 0, 0, 0.06);
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.12);
}

body.light-mode .navbar {
    background: rgba(245, 245, 247, 0.9);
}

body.light-mode .login-overlay {
    background: linear-gradient(135deg, #f5f5f7 0%, #e5e5e7 50%, #d5d5d7 100%);
}

body.light-mode .login-box {
    background: rgba(255, 255, 255, 0.95);
}

/* ==================== FAVORITES MODAL ==================== */
.favorites-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.favorites-modal.active {
    display: flex;
    animation: modalFadeIn 0.4s ease;
}

.favorites-content {
    background: var(--bg-card);
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
    border: 1px solid var(--border);
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
}

.favorites-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.favorites-header h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
}

.favorites-header h2 i {
    color: #ef4444;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.empty-favorites {
    text-align: center;
    padding: 50px;
    color: var(--text-muted);
}

.empty-favorites i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

/* ==================== STATISTICS DASHBOARD ==================== */
.stats-dashboard {
    padding: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--glass);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
}

.stat-card-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-card-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

.stat-card-change {
    font-size: 0.85rem;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
}

.stat-card-change.positive {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.stat-card-change.negative {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .filters-bar {
        flex-direction: column;
    }

    .filter-group {
        width: 100%;
    }

    .filter-select {
        flex: 1;
    }

    .comment-form {
        flex-direction: column;
    }

    .comment-submit {
        width: 100%;
    }

    .social-share {
        justify-content: center;
    }

    .theme-toggle {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .favorites-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==================== IMPROVED ANNOUNCEMENTS ==================== */
.announcements-banner {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(22, 33, 62, 0.98) 100%);
    padding: 0;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.announcements-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(168, 85, 247, 0.05) 25%,
            rgba(34, 211, 238, 0.05) 50%,
            rgba(244, 114, 182, 0.05) 75%,
            transparent 100%);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.announcement-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 20px 30px;
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.15), rgba(34, 211, 238, 0.1), transparent);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    flex-wrap: wrap;
    animation: announceSlide 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.announcement-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    border-radius: 0 4px 4px 0;
}

@keyframes announceSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.announcement-item.discount {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.1), transparent);
}

.announcement-item.discount::before {
    background: linear-gradient(180deg, #10b981, #22d3ee);
}

.announcement-item.urgent {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.2), rgba(245, 158, 11, 0.15), transparent);
    animation: urgentPulse 2s ease-in-out infinite;
}

.announcement-item.urgent::before {
    background: linear-gradient(180deg, #ef4444, #f59e0b);
}

@keyframes urgentPulse {

    0%,
    100% {
        background-color: transparent;
    }

    50% {
        background-color: rgba(239, 68, 68, 0.05);
    }
}

.announcement-item.warning {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.2), rgba(234, 179, 8, 0.1), transparent);
}

.announcement-item.warning::before {
    background: linear-gradient(180deg, #f59e0b, #fbbf24);
}

.announcement-icon {
    font-size: 2rem;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 16px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px var(--shadow-color);
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.announcement-content {
    flex: 1;
    min-width: 200px;
}

.announcement-title {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 5px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.announcement-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.announcement-countdown {
    display: flex;
    gap: 12px;
}

.countdown-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    min-width: 60px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(5px);
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.announcement-remaining {
    background: var(--gradient);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.95rem;
    color: white;
    animation: remainingPulse 2s ease-in-out infinite;
    box-shadow: 0 5px 20px var(--shadow-color);
}

@keyframes remainingPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 30px var(--shadow-color);
    }
}

.announcement-link {
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 24px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.announcement-link:hover {
    background: var(--gradient);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-color);
    border-color: transparent;
}

.announcement-link i {
    font-size: 0.9rem;
}

/* ==================== SOCIAL SHARING BUTTONS ==================== */
.social-share {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    justify-content: center;
}

.social-share-title {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.social-btn:hover::before {
    width: 150%;
    height: 150%;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-btn:active {
    transform: translateY(-2px) scale(1.05);
}

/* Twitter/X */
.social-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8ecf);
    color: white;
}

.social-btn.twitter:hover {
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.5);
}

/* WhatsApp */
.social-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.social-btn.whatsapp:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Telegram */
.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #0077b5);
    color: white;
}

.social-btn.telegram:hover {
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.5);
}

/* Discord */
.social-btn.discord {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: white;
}

.social-btn.discord:hover {
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.5);
}

/* Snapchat */
.social-btn.snapchat {
    background: linear-gradient(135deg, #fffc00, #f7e300);
    color: #000;
}

.social-btn.snapchat:hover {
    box-shadow: 0 10px 30px rgba(255, 252, 0, 0.5);
}

/* Facebook */
.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
    color: white;
}

.social-btn.facebook:hover {
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.5);
}

/* Reddit */
.social-btn.reddit {
    background: linear-gradient(135deg, #ff4500, #e03d00);
    color: white;
}

.social-btn.reddit:hover {
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.5);
}

/* Copy Link */
.social-btn.copy {
    background: var(--gradient);
    color: white;
}

.social-btn.copy:hover {
    box-shadow: 0 10px 30px var(--shadow-color);
}

/* Social Share Mobile */
@media (max-width: 768px) {
    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .announcement-item {
        padding: 15px 20px;
        gap: 15px;
    }

    .announcement-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .announcement-title {
        font-size: 1rem;
    }

    .countdown-box {
        min-width: 50px;
        padding: 8px 10px;
    }

    .countdown-value {
        font-size: 1.2rem;
    }
}

/* Share Button on Server Card */
.share-btn-small {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
    z-index: 5;
}

.server-card:hover .share-btn-small {
    opacity: 1;
    transform: translateY(0);
}

.share-btn-small:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 5px 20px var(--shadow-color-strong), 0 0 15px var(--primary-glow);
}

/* ==================== ENHANCED LOADING ANIMATIONS ==================== */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* ==================== ENHANCED GLOW EFFECTS ==================== */
.glow-primary {
    box-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow), 0 0 60px var(--primary-glow);
}

.glow-gold {
    box-shadow: 0 0 20px var(--gold-glow), 0 0 40px var(--gold-glow), 0 0 60px var(--gold-glow);
}

.glow-success {
    box-shadow: 0 0 20px var(--success-glow), 0 0 40px var(--success-glow), 0 0 60px var(--success-glow);
}

/* ==================== ENHANCED HOVER STATES ==================== */
.hover-lift {
    transition: transform var(--speed-normal) ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-glow {
    transition: box-shadow var(--speed-normal) ease;
}

.hover-glow:hover {
    box-shadow: 0 10px 30px var(--shadow-color-strong);
}

/* ==================== ENHANCED SCROLL ANIMATIONS ==================== */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ==================== ENHANCED GRADIENT ANIMATIONS ==================== */
.animated-gradient {
    background-size: 200% 200%;
    animation: gradientFlow 4s ease infinite;
}

.animated-gradient-fast {
    background-size: 200% 200%;
    animation: gradientFlow 2s ease infinite;
}

/* ==================== ENHANCED SHADOW EFFECTS ==================== */
.shadow-primary {
    box-shadow: 0 10px 40px var(--shadow-color-strong);
}

.shadow-gold {
    box-shadow: 0 10px 40px var(--shadow-gold-strong);
}

.shadow-success {
    box-shadow: 0 10px 40px var(--shadow-success);
}

/* ==================== ENHANCED BORDER GLOW ==================== */
.border-glow-primary {
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px var(--primary-glow), inset 0 0 10px var(--primary-glow);
}

.border-glow-gold {
    border: 2px solid var(--gold);
    box-shadow: 0 0 10px var(--gold-glow), inset 0 0 10px var(--gold-glow);
}

/* ==================== CARD ACTION BUTTONS ==================== */
.card-actions {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 5;
}

.server-card:hover .card-actions {
    opacity: 1;
    transform: translateY(0);
}

.card-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-action-btn:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: scale(1.15);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.card-action-btn.active {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.card-action-btn.active i {
    color: white;
}

/* ==================== QUICK SHARE BUTTONS ==================== */
.server-card-buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.server-card-buttons .server-link {
    flex: 1;
}

.quick-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--glass);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.quick-share-btn:nth-child(2) {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
}

.quick-share-btn:nth-child(3) {
    background: linear-gradient(135deg, #1da1f2, #0d8ecf);
    color: white;
    border: none;
}

/* ==================== REPORT MODAL ==================== */
.report-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
    animation: modalFadeIn 0.4s ease;
}

.report-modal {
    background: var(--bg-card);
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    padding: 30px;
    border: 1px solid var(--border);
    position: relative;
}

.report-modal h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.report-modal h3 i {
    color: #ef4444;
}

.report-notice {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.report-notice i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
}

.report-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.report-form label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}

.report-form select,
.report-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--glass);
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.report-form select:focus,
.report-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.report-form textarea {
    min-height: 100px;
    resize: vertical;
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

/* ==================== LAZY LOADING ==================== */
.lazy-image {
    opacity: 0.5;
    filter: blur(5px);
    transition: all 0.5s ease;
}

.lazy-image.loaded {
    opacity: 1;
    filter: blur(0);
}

/* ==================== GUEST LIMITS NOTICE ==================== */
.guest-limits-notice {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(34, 211, 238, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 14px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}

.guest-limits-notice i {
    font-size: 1.5rem;
    color: var(--primary);
}

.guest-limits-notice .limits-info {
    flex: 1;
}

.guest-limits-notice .limits-title {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text);
}

.guest-limits-notice .limits-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.guest-limits-notice .limits-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.guest-limits-notice .limit-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.guest-limits-notice .limit-item i {
    font-size: 0.8rem;
}

/* ==================== FAVORITES PAGE IMPROVEMENTS ==================== */
.favorites-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.favorites-empty-state i {
    font-size: 5rem;
    color: var(--text-muted);
    opacity: 0.3;
    margin-bottom: 20px;
}

.favorites-empty-state h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.favorites-empty-state p {
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto;
}

/* Mobile Responsive for New Features */
@media (max-width: 768px) {
    .card-actions {
        opacity: 1;
        transform: translateY(0);
    }

    .card-action-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .quick-share-btn {
        width: 35px;
        height: 35px;
    }

    .report-modal {
        padding: 20px;
    }

    .guest-limits-notice {
        flex-direction: column;
        text-align: center;
    }

    .guest-limits-notice .limits-list {
        justify-content: center;
    }
}

/* ==================== REMOVE FAVORITE BUTTON ==================== */
.remove-fav-btn {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.remove-fav-btn:hover {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}

/* Limit item done state */
.guest-limits-notice .limit-item.done {
    background: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

/* Mini server card for favorites */
.server-card.mini {
    height: auto;
}

.server-card.mini .server-image {
    height: 120px;
}

.server-card.mini .server-content {
    padding: 12px;
}

.server-card.mini .server-name {
    font-size: 0.95rem;
}

/* Button outline style */
.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(168, 85, 247, 0.1);
}

/* ==================== تخفيف الأنيميشن للأجهزة الضعيفة ==================== */

@media (max-width: 768px) {
    * {
        animation-duration: 0.2s !important;
        transition-duration: 0.15s !important;
    }

    .hero-bg,
    .particles,
    .floating-shapes {
        animation: none !important;
        display: none !important;
    }

    .server-card {
        animation: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* ==================== Banner Ads ==================== */
.banner-ads-container {
    padding: 15px 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(34, 211, 238, 0.1));
    border-bottom: 1px solid var(--border);
    margin-top: 80px;
}

.banner-ads-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-ad {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--border);
}

.banner-ad:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
    border-color: var(--primary);
}

.banner-ad img {
    max-width: 728px;
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .banner-ad img {
        max-width: 100%;
    }
}
