/* Modern HyServer.eu Stylesheet */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --dark: #000000;
    --dark-lighter: #0a0a0a;
    --dark-card: #0a0a0a;
    --text: #f1f5f9;
    --text-gray: #94a3b8;
    --border: #1e293b;
    --gold: #fbbf24;
    --success: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--dark-card);
    border-bottom: 2px solid var(--border);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    height: 24px;
    width: auto;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 1rem;

.language-selector select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.user-info {
    padding: 0.5rem 1rem;
    background: var(--dark);
    border-radius: 8px;
    color: var(--text-gray);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.8);
    }
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    color: #ffffff !important;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--dark-lighter);
    color: #f1f5f9 !important;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
    border-color: var(--primary);
    transform: translateY(-2px);
    color: #ffffff !important;
}

/* Hero Section */
.hero {
    padding: 6rem 0 3rem 0;
    text-align: center;
    background: url('assets/img/background.jpg');
    background-size: cover;
    background-position: center;
    background-color: #000;
    border-bottom: 2px solid var(--border);
    position: relative;
    overflow: hidden;
}

/* Compact Stats Bar */
.compact-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 2.5rem auto 2rem;
    padding: 1.2rem 2.5rem;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    max-width: fit-content;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.compact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.8rem;
    min-width: 100px;
}

.compact-stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.compact-stat-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    white-space: nowrap;
}

.compact-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

@media (max-width: 768px) {
    .compact-stats-bar {
        flex-wrap: wrap;
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    .compact-stat {
        padding: 0 1rem;
        min-width: 80px;
    }
    
    .compact-stat-divider {
        display: none;
    }
    
    .compact-stat-value {
        font-size: 1.5rem;
    }
    
    .compact-stat-label {
        font-size: 0.65rem;
    }
    
    .sponsor-slide {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sponsor-slider {
        padding: 0 1rem;
    }
}

/* Sponsor Banner Slider */
.sponsor-slider {
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 0 2rem;
}

.sponsor-slider-track {
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.sponsor-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.sponsor-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1;
}

.sponsor-banner-link {
    display: block;
    width: 100%;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(251, 191, 36, 0.5);
    background: rgba(30, 41, 59, 0.95);
    transition: all 0.3s ease;
    text-decoration: none;
}

.sponsor-banner-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
    border-color: var(--gold);
}

.sponsor-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sponsor-banner-available {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    height: 60px;
    border-radius: 8px;
    border: 2px dashed rgba(99, 102, 241, 0.5);
    background: rgba(30, 41, 59, 0.95);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0 1rem;
}

.sponsor-banner-available:hover {
    border-color: var(--primary);
    background: rgba(30, 41, 59, 1);
}

.sponsor-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.4);
    background: #000000;
    padding: 0.5rem;
}

.sponsor-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.sponsor-stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

.sponsor-available-text {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sponsor-available-icon {
    font-size: 1.5rem;
}

.sponsor-discord-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sponsor-discord-link:hover {
    background: linear-gradient(135deg, #4752C4, #5B6EAE);
    transform: scale(1.05);
}

.sponsor-slider-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.sponsor-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sponsor-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    width: 24px;
    border-radius: 4px;
}

.sponsor-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
    .sponsor-slide {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(226, 232, 240, 0.8);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    min-width: 200px;
    transition: all 0.4s ease;
}

.stat:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
    background: rgba(30, 41, 59, 1);
}

.stat-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.2));
    border-radius: 12px;
    flex-shrink: 0;
}

.stat-info {
    text-align: left;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}
    background-clip: text;
}

.stat p {
    color: var(--text-gray);
    margin: 0;
}

/* Filters */
/* Sponsor Banners */
.sponsor-banners-section {
    padding: 3rem 0;
    background: var(--dark);
}

.sponsor-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.sponsor-banners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 1500px;
    margin: 0 auto;
}

.sponsor-banner-slot {
    background: linear-gradient(145deg, #1e2a3a, #15202b);
    border: 2px dashed rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    width: 468px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.sponsor-banner-slot.available {
    border-style: dashed;
    padding: 0.5rem 1rem;
}

.sponsor-banner-slot.filled {
    border: 2px solid #FFD700;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.sponsor-banner-slot.filled:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.sponsor-banner-image {
    width: 468px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.sponsor-banner-slot h3 {
    font-size: 0.85rem;
    color: var(--text);
    margin: 0;
    white-space: nowrap;
    font-weight: 700;
}

.sponsor-banner-slot .join-discord {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 0.75rem;
    white-space: nowrap;
}

.sponsor-banner-slot .join-discord:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

.filters-section {
    padding: 2.5rem 0;
    background: #000000;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.filters-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.search-box-container {
    position: relative;
    width: 100%;
    max-width: 700px;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    pointer-events: none;
    transition: color 0.3s;
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    background: #0a0a0a;
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.search-input:focus + .search-icon,
.search-input:not(:placeholder-shown) + .search-icon {
    color: var(--primary);
}

.filters-controls {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.filters {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #0a0a0a;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s;
}

.filter-group:hover {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.filter-group label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
    white-space: nowrap;
}

.filter-group select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--text);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"%3e%3cpath fill="%236366f1" d="M6 9L1 4h10z"/%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 12px;
}

.filter-group select:hover {
    background-color: rgba(99, 102, 241, 0.15);
    border-color: var(--primary);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.filter-group select option {
    background: #1e293b;
    color: var(--text);
    padding: 0.5rem;
}

/* Servers Section */
.servers-section {
    padding: 3rem 0;
    min-height: 500px;
}

.servers-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Server Card */
.server-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    animation: slideInUp 0.6s ease-out;
}

.server-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.3);
    border-color: var(--primary);
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.server-card:hover::before {
    opacity: 1;
}

.server-card.sponsored {
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.3);
    animation: glow 2s infinite;
}

.server-card.sponsored:hover {
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.5);
}

.sponsored-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    color: var(--dark);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.75rem;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.vip-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.75rem;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(147, 51, 234, 0.4);
}

.server-card.vip {
    border: 2px solid #9333ea;
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.15);
}

.server-card.vip:hover {
    border-color: #7c3aed;
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.25);
}

.server-banner {
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--dark-lighter);
    position: relative;
}

.server-content {
    padding: 28px 12px 12px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.server-header {
    margin-bottom: 0.6rem;
}

.server-logo {
    position: absolute;
    bottom: -20px;
    left: 12px;
    width: 55px;
    height: 55px;
    border-radius: 8px;
    border: 3px solid var(--dark-card);
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.server-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.server-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    cursor: pointer;
    transition: color 0.3s;
    font-weight: 600;
}

.server-info h3:hover {
    color: var(--primary);
}

.server-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.category {
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.server-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold);
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.server-rating .review-count {
    color: var(--text-gray);
    font-weight: 400;
    font-size: 0.7rem;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 0.7rem;
    border-radius: 6px;
    flex-shrink: 0;
    white-space: nowrap;
}

.server-status.online {
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
}

.server-status.offline {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
    }
}

.rating, .reviews {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.server-description {
    color: var(--text-gray);
    margin: 0.75rem 0;
    line-height: 1.5;
    font-size: 0.9rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.server-ip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.75rem 0;
    padding: 0.6rem;
    background: var(--dark);
    border-radius: 6px;
    font-size: 0.8rem;
}

.server-ip code {
    flex: 1;
    color: var(--secondary);
    font-size: 0.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-copy {
    padding: 0.3rem 0.6rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s;
}

.btn-copy:hover {
    background: var(--primary-dark);
}

.server-links {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.link-btn {
    padding: 0.5rem 1rem;
    background: var(--dark-lighter);
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.link-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Horizontal Server Card Layout */
.server-card-horizontal {
    background: #1a1a1a;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    height: 144px;
    max-width: 1024px;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.server-card-horizontal:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
}

.server-card-horizontal.sponsored {
    border-color: var(--gold);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.server-card-horizontal.vip {
    border-color: #070707;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Logo Section */
.server-logo-section {
    position: relative;
    width: 80px;
    min-width: 80px;
    height: 100%;
    background: #000000;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 1.5rem;
    margin: 0;
    border-radius: 0;
    overflow: visible;
}

.server-logo-main {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: none;
}

.rank-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #070707, #070707);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    z-index: 3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

/* Banner Container */
.server-banner-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem;
    gap: 0.5rem;
    border-right: 1px solid rgba(99, 102, 241, 0.4);
    background: #000000;
}

/* Banner Section */
.server-banner-section {
    width: 468px;
    height: 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000000;
    border-radius: 6px;
    border: 1px solid rgba(99, 102, 241, 0.4);
}

/* IP Row - Specific dimensions */
.server-ip-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0 0.75rem;
    width: 468px;
    height: 32px;
    box-sizing: border-box;
    background: #000000;
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.server-ip-row:hover {
    background: rgba(99, 102, 241, 0.3);
    border-color: var(--primary);
}

.country-flag {
    font-size: 0.85rem;
    flex-shrink: 0;
}

.server-ip-row code {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-copy-icon {
    background: none;
    border: none;
    color: var(--text-gray);
    padding: 0.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.btn-copy-icon:hover {
    color: var(--primary);
}

.server-desc-compact {
    color: var(--text-gray);
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-row {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    align-items: center;
}

.cat-tag {
    background: rgba(99, 102, 241, 0.25);
    color: var(--secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.plus-more {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Right Section - Stats */
.server-right-section {
    background: transparent;
    border-left: none;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.status-pill {
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    text-align: center;
    width: 100%;
}

.status-pill.online {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.status-pill.offline {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    width: 100%;
}

.stat-icon-small {
    font-size: 1rem;
}

.stat-label-compact {
    color: var(--text-gray);
    font-size: 0.65rem;
    font-weight: 600;
}

.stat-value-compact {
    color: white;
    font-weight: 700;
    margin-left: auto;
}

.stat-alltime-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    padding: 0 0.25rem;
}

.stat-alltime {
    color: var(--text-gray);
    font-size: 0.65rem;
}

.btn-vote-small {
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-vote-small:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.btn-vote-small:active {
    transform: translateY(0);
}

/* Content Wrapper */
.server-content-wrapper {
    flex: 1;
    display: flex;
    min-width: 0;
}

/* Main Info Section */
.server-main-info {
    flex: 1;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 0;
}

.server-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.server-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.server-badges {
    display: flex;
    gap: 0.5rem;
}

.badge-sponsored {
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    color: #0f172a;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.badge-vip {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(147, 51, 234, 0.3);
}

.server-ip-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    width: fit-content;
    cursor: pointer;
    transition: all 0.2s;
}

.server-ip-wrapper:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
}

.ip-icon {
    font-size: 0.9rem;
}

.server-ip {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.btn-copy {
    background: none;
    border: none;
    color: var(--text-gray);
    padding: 0.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.btn-copy:hover {
    color: var(--primary);
}

.server-categories {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    align-items: center;
}

.category-badge {
    background: rgba(99, 102, 241, 0.2);
    color: var(--secondary);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.2s;
}

.category-badge:hover {
    background: rgba(99, 102, 241, 0.3);
}

.category-more {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Stats Section */
.server-stats-info {
    background: rgba(15, 23, 42, 0.6);
    border-left: 1px solid rgba(99, 102, 241, 0.2);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.status-badge {
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.status-online {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.status-offline {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    width: 100%;
}

.stat-icon {
    font-size: 1.25rem;
}

.stat-details {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
}

.stat-value {
    font-size: 0.9rem;
    color: white;
    font-weight: 700;
}

/* Legacy styles - keep for backwards compatibility */
.server-middle-section {
    flex: 1;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
    background: #000000;
}

.server-title-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.server-title-row h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.label-sponsored {
    background: var(--gold);
    color: var(--dark);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

.label-vip {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

.server-ip-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.5rem;
    background: var(--dark);
    border-radius: 4px;
    width: fit-content;
    cursor: pointer;
}

.server-ip-row:hover {
    background: var(--dark-lighter);
}

.country-flag {
    font-size: 0.75rem;
}

.server-ip-row code {
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 500;
}

.btn-copy-icon {
    background: none;
    border: none;
    color: var(--text-gray);
    padding: 0.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.btn-copy-icon:hover {
    color: var(--primary);
}

.server-desc-compact {
    color: var(--text-gray);
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-row {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    align-items: center;
}

.cat-tag {
    background: var(--primary);
    color: white;
    padding: 0.2rem 0.45rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.rating-inline {
    background: rgba(251, 191, 36, 0.15);
    color: var(--gold);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 600;
}

.plus-more {
    background: var(--dark);
    color: var(--text-gray);
    padding: 0.2rem 0.45rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 600;
}

/* Right Section - Stats */
.server-right-section {
    background: var(--dark);
    border-left: 1px solid var(--border);
    padding: 0.75rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
    justify-content: center;
    min-width: 130px;
    text-align: right;
}

.status-pill {
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.status-pill.online {
    background: var(--success);
    color: white;
}

.status-pill.offline {
    background: #ef4444;
    color: white;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    justify-content: flex-end;
}

.stat-icon-small {
    font-size: 0.85rem;
}

.stat-label-compact {
    font-size: 0.6rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.stat-value-compact {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 700;
    margin-left: auto;
}

.stat-alltime {
    font-size: 0.65rem;
    color: var(--text-gray);
    width: 100%;
    text-align: right;
}

.sponsored-label {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--gold);
    color: var(--dark);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
}

.vip-label {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
}

.rank-number {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 1rem;
    font-weight: 800;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    border-right: 1px solid var(--border);
}

.server-banner-horizontal {
    width: 400px;
    min-width: 400px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--dark-lighter);
    position: relative;
    border-right: 1px solid var(--border);
}

.server-logo-horizontal {
    position: absolute;
    bottom: 6px;
    left: 6px;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    border: 2px solid var(--dark-card);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    background: var(--dark-card);
}

.server-details-horizontal {
    flex: 1;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.server-header-horizontal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.server-header-horizontal h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s;
    margin: 0;
}

.server-header-horizontal h3:hover {
    color: var(--primary);
}

.server-rating-inline {
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
}

.server-ip-horizontal {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.6rem;
    background: var(--dark);
    border-radius: 4px;
    width: fit-content;
}

.server-ip-horizontal .ip-icon {
    font-size: 0.75rem;
}

.server-ip-horizontal code {
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 500;
}

.btn-copy-small {
    background: var(--primary);
    border: none;
    color: white;
    padding: 0.25rem 0.35rem;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.btn-copy-small:hover {
    background: var(--primary-dark);
}

.server-description-horizontal {
    color: var(--text-gray);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

.server-meta-horizontal {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.category-badge {
    background: var(--primary);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.server-stats-horizontal {
    background: var(--dark);
    border-left: 1px solid var(--border);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.status-badge {
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.status-badge.online {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.status-badge.offline {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    width: 100%;
}

.stat-icon {
    font-size: 1rem;
}

.stat-label {
    font-size: 0.6rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.stat-value {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 700;
}

.stat-item-small {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    font-size: 0.65rem;
    width: 100%;
    justify-content: center;
}

.stat-label-small {
    color: var(--text-gray);
}

.stat-value-small {
    color: var(--text);
    font-weight: 600;
}

.btn-vote-horizontal {
    background: linear-gradient(135deg, var(--secondary), #059669);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 0.25rem;
}

.btn-vote-horizontal:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .server-banner-horizontal {
        width: 350px;
        min-width: 350px;
    }
}

@media (max-width: 968px) {
    .server-card-horizontal {
        flex-direction: column;
    }
    
    .rank-number {
        position: absolute;
        top: 8px;
        left: 8px;
        z-index: 10;
        min-width: auto;
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        border: none;
        font-size: 1.2rem;
    }
    
    .server-banner-horizontal {
        width: 100%;
        min-width: 100%;
        height: 100px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    
    .server-stats-horizontal {
        border-left: none;
        border-top: 1px solid var(--border);
        flex-direction: row;
        min-width: auto;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .stat-item {
        width: auto;
        flex: 1;
        min-width: 80px;
    }
}



/* Category checkboxes */
.category-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--dark);
    border-radius: 8px;
}

.category-checkboxes label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.category-checkboxes label:hover {
    background: var(--dark-lighter);
}

.category-checkboxes input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.server-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.vote-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.4rem 0.7rem;
    background: var(--dark);
    border-radius: 6px;
}

.vote-count-large {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--secondary);
    line-height: 1;
}

.vote-label {
    font-size: 0.65rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

/* Sponsor Slots Section */
.sponsor-slots {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(245, 158, 11, 0.05));
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    overflow: visible;
    width: 100%;
}

.sponsor-slots h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.sponsor-slots .container {
    max-width: 100%;
    overflow: visible;
}

.slots-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center;
    gap: 1.5rem;
    max-width: none !important;
    width: 100% !important;
    margin: 0 auto;
    padding: 0 40px !important;
    overflow: visible !important;
}
}

.slot-card {
    background: var(--dark-card);
    border: 2px dashed var(--border);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s;
    min-height: 160px;
    width: calc(33.333% - 1rem);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.slot-card.available {
    border-style: dashed;
    border-color: var(--gold);
}

.slot-card.available:hover {
    border-style: solid;
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.2);
    transform: translateY(-2px);
}

.slot-card.sponsored-slot {
    border: 2px solid var(--gold);
    border-style: solid;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.05));
}

.slot-card.sponsored-slot:hover {
    box-shadow: 0 5px 25px rgba(251, 191, 36, 0.4);
    transform: translateY(-2px);
}

.slot-card.sponsored-slot .server-logo {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    border: 2px solid var(--gold);
}

.slot-card h3 {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

.slot-card p {
    color: var(--text-gray);
    margin-bottom: 0.6rem;
    font-size: 0.75rem;
}

.slot-icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    opacity: 0.5;
}

.slot-price {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: bold;
    margin: 0.6rem 0;
}

.slot-card .btn-sponsor {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
}

.server-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.server-footer button,
.server-footer a {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    min-width: fit-content;
}

/* Ensure server card buttons have visible text */
.server-card .server-footer .btn-primary,
.server-card .server-footer button.btn-primary {
    background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
    color: #ffffff !important;
    border: none;
}

.server-card .server-footer .btn-secondary,
.server-card .server-footer button.btn-secondary {
    background: #1e293b !important;
    color: #f1f5f9 !important;
    border: 1px solid #334155;
}

.server-card .server-footer .btn-view,
.server-card .server-footer a.btn-view {
    background: #6366f1;
    color: #ffffff !important;
    text-decoration: none;
}

.btn-vote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.6rem 0.8rem;
    background: var(--success);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
    grid-column: 3;
}

.btn-vote:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.btn-copy-ip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.8rem;
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
    grid-column: 2;
    white-space: nowrap;
}

.btn-copy-ip:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.vote-count {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    padding: 0.6rem 0.8rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 6px;
    grid-column: 4;
}

.btn-view {
    padding: 0.6rem 0.8rem;
    background: var(--primary);
    color: #ffffff !important;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-view:hover {
    background: var(--primary-dark);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(145deg, #1a1d2e 0%, #16192a 100%);
    margin: 5% auto;
    padding: 2.5rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    width: 90%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 92, 246, 0.15);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.close:hover {
    color: white;
    background: rgba(239, 68, 68, 0.2);
    transform: rotate(90deg);
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.4rem;
    border-radius: 12px;
}

.tab-btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
    background: transparent;
    color: var(--text-gray);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: white;
    background: rgba(139, 92, 246, 0.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

/* Forms */
.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Discord Button */
.btn-discord {
    width: 100%;
    padding: 1.125rem 1.5rem;
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-discord::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-discord:hover::before {
    left: 100%;
}

.btn-discord:hover {
    background: linear-gradient(135deg, #4752C4 0%, #5B6EAE 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(88, 101, 242, 0.5);
}

.btn-discord:active {
    transform: translateY(0);
}

.btn-discord svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Auth Divider */
.auth-divider {
    position: relative;
    text-align: center;
    margin: 1.75rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.auth-divider span {
    position: relative;
    background: linear-gradient(145deg, #1a1d2e 0%, #16192a 100%);
    padding: 0 1.25rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.625rem;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text);
    border: 1.5px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    border-color: var(--primary);
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Auth Form Submit Button */
.auth-form button[type="submit"] {
    width: 100%;
    padding: 1rem 1.5rem;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.auth-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(139, 92, 246, 0.5);
}

.auth-form button[type="submit"]:active {
    transform: translateY(0);
}

.error {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9375rem;
    animation: shake 0.4s ease;
    display: none;
}

.error:not(:empty) {
    display: block;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: var(--success);
    color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification.error {
    background: var(--danger);
}

/* Footer */
.footer {
    background: #000000;
    border-top: 2px solid var(--border);
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

.footer-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: #000000;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    width: 468px;
    margin-left: auto;
    margin-right: auto;
}

.footer-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.footer-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.footer-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    font-weight: 500;
}

.footer-stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(99, 102, 241, 0.3);
}

.footer p {
    color: var(--text-gray);
    margin: 0.5rem 0;
}

/* Statistics Page */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* No servers message */
.no-servers {
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
    font-size: 1.2rem;
}

/* Pagination */
.pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    padding: 0.6rem 1rem;
    background: var(--dark-card);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.pagination-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    font-weight: 700;
}

.pagination-dots {
    padding: 0.6rem 0.5rem;
    color: var(--text-gray);
}

.pagination-info {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .servers-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar {
        position: relative;
        top: 0;
    }
    
    .sidebar-left {
        order: 1;
    }
    
    .main-content {
        order: 2;
    }
    
    .sidebar-right {
        order: 3;
    }
    
    .sidebar-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar-list .server-card-compact {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .filters {
        flex-direction: column;
    }
    
    .server-header {
        flex-direction: column;
        text-align: center;
    }
    
    .server-footer {
        flex-direction: column;
    }
    
    .nav {
        flex-direction: column;
        width: 100%;
    }
}

/* Sponsor Callout */
.sponsor-callout {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    padding: 2rem 0;
}

.sponsor-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--dark-card);
    border-radius: 12px;
    border: 2px solid var(--gold);
}

.sponsor-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.sponsor-content p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.sponsor-price {
    font-size: 1.2rem;
    color: var(--text) !important;
}

.sponsor-price strong {
    color: var(--gold);
    font-size: 1.5rem;
}

.btn-sponsor {
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-sponsor:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.4);
}

/* Sponsors Page */
.sponsors-hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    border-bottom: 2px solid var(--border);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.sponsors-section {
    padding: 3rem 0;
}

.sponsor-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* New Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0;
}

.pricing-card {
    background: linear-gradient(135deg, var(--dark-card), var(--dark-lighter));
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.vip-card {
    border-color: #9333ea;
}

.vip-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.3);
}

.sponsored-card {
    border-color: var(--gold);
}

.sponsored-card:hover {
    border-color: #f59e0b;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
}

.featured {
    transform: scale(1.05);
    z-index: 1;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.pricing-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin: 0.5rem 0 1.5rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.sponsor-benefits {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.sponsor-benefits:first-child {
    border-color: #9333ea;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.15);
}

.sponsor-benefits:first-child:hover {
    border-color: #7c3aed;
    box-shadow: 0 6px 30px rgba(147, 51, 234, 0.25);
    transform: translateY(-5px);
}

.sponsor-benefits:last-child {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.15);
}

.sponsor-benefits:last-child:hover {
    border-color: #f59e0b;
    box-shadow: 0 6px 30px rgba(251, 191, 36, 0.25);
    transform: translateY(-5px);
}

.sponsor-benefits h2 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.sponsor-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.sponsor-pricing {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border);
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    transition: transform 0.2s;
}

.benefits-list li:hover {
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 6px;
    color: var(--primary);
    font-weight: bold;
}

.pricing-card {
    background: var(--dark);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.price-header h3 {
    margin-bottom: 1rem;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    margin: 2rem 0;
}

.currency {
    font-size: 2rem;
    color: var(--gold);
}

.amount {
    font-size: 4rem;
    font-weight: bold;
    color: var(--gold);
}

.period {
    font-size: 1.5rem;
    color: var(--text-gray);
}

.price-features {
    text-align: left;
    margin: 2rem 0;
}

.price-features p {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.price-note {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: 1rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary);
    text-align: center;
}

.discord-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--dark);
    border-radius: 8px;
}

.discord-icon {
    font-size: 2rem;
}

.discord-username {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.discord-username:hover {
    color: var(--primary-dark);
}

.contact-note {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.sponsor-preview {
    margin: 3rem 0;
}

.faq-section {
    margin: 3rem 0;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 12px;
    border: 2px solid var(--gold);
    margin: 3rem 0;
}

/* Dashboard Styles */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--dark-card), var(--dark-lighter));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
}

.stat-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-info p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.btn-vip-action {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-vip-action:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

/* Admin Stats */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--dark-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(98, 84, 243, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(98, 84, 243, 0.1);
    border-radius: 12px;
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    /* Navigation improvements */
    .header {
        padding: 0.5rem 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .nav a {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    /* Hero section */
    .hero h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Stats improvements */
    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Filters improvements */
    .filters {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .search-box {
        width: 100%;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .filter-group select,
    .filter-group button {
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
        min-height: 44px; /* Touch-friendly */
    }
    
    /* Server cards - improved for mobile homepage */
    .servers-list,
    .servers-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .server-card {
        padding: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        border: 2px solid var(--border);
    }
    
    .server-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    
    .server-info p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .server-stats {
        font-size: 0.95rem;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .server-stat {
        min-width: 80px;
        text-align: center;
    }
    
    .server-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .server-logo {
        width: 80px;
        height: 80px;
    }
    
    .server-footer {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .server-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .server-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Modal improvements */
    .modal-content {
        width: 95%;
        max-width: 95%;
        margin: 1rem;
        padding: 1.5rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal h2 {
        font-size: 1.5rem;
    }
    
    /* Form improvements */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="url"],
    textarea,
    select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 44px;
        padding: 0.75rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    /* Button improvements */
    .btn,
    .btn-primary,
    .btn-secondary {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Stats grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    /* Sponsor sections */
    .sponsor-info,
    .sponsor-comparison,
    .pricing-cards {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
        word-wrap: break-word;
    }
    
    .pricing-icon {
        font-size: 3rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .period {
        font-size: 1rem;
    }
    
    .benefits-list li {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .benefit-icon {
        font-size: 1.2rem;
        width: 28px;
        height: 28px;
    }
    
    .sponsor-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .btn-sponsor {
        width: 100%;
        padding: 1rem;
    }
    
    /* Container padding */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero actions */
    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    /* Stats container */
    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Title sizes */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Featured card */
    .featured {
        transform: scale(1);
    }
    
    /* Dashboard improvements */
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .dashboard-header .btn {
        width: 100%;
    }
    
    .dashboard-header h1 {
        font-size: 1.8rem;
    }
    
    /* Tables */
    .servers-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        font-size: 0.85rem;
        min-width: 600px;
    }
    
    table th,
    table td {
        padding: 0.75rem 0.5rem;
    }
    
    /* Server page improvements */
    .server-details {
        padding: 1rem;
    }
    
    .server-banner {
        height: 150px;
        object-fit: cover;
    }
    
    .server-content {
        padding: 1rem;
    }
    
    .server-main {
        padding: 1rem;
    }
    
    .server-sidebar {
        padding: 1rem;
    }
    
    .server-title {
        font-size: 1.8rem;
    }
    
    .server-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
    }
    
    .tab-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        white-space: nowrap;
    }
    
    /* Review cards */
    .review-card {
        padding: 1rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .review-replies {
        margin-left: 0.5rem;
        padding-left: 0.5rem;
    }
    
    .review-form textarea {
        font-size: 16px;
    }
    
    /* Admin page improvements */
    .admin-header {
        padding: 1rem;
    }
    
    .admin-content {
        padding: 1rem;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .admin-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .admin-tab {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        white-space: nowrap;
    }
    
    /* Sponsors page improvements */
    .sponsors-hero {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-header {
        padding-bottom: 1.5rem;
    }
    
    .pricing-icon {
        font-size: 3rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .pricing-amount {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .benefits-list li {
        font-size: 0.95rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .discord-contact {
        flex-direction: column;
        padding: 1rem;
    }
    
    .discord-username {
        font-size: 1.2rem;
        word-break: break-all;
    }
    
    .cta-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .btn-large {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Widget page */
    .widget-preview {
        transform: scale(0.9);
    }
    
    /* Guide pages */
    .guide-content {
        padding: 1rem;
    }
    
    .guide-content h2 {
        font-size: 1.5rem;
    }
    
    .guide-content h3 {
        font-size: 1.2rem;
    }
    
    .guide-content pre {
        font-size: 0.85rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .guide-content code {
        font-size: 0.85rem;
    }
    
    /* Hide unnecessary elements on mobile */
    .featured-badge {
        font-size: 0.7rem;
        padding: 0.4rem 2rem;
    }
    
    /* Pagination improvements */
    .pagination {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .pagination button {
        min-width: 44px;
        min-height: 44px;
        padding: 0.5rem;
    }
    
    /* Update cards */
    .update-card {
        padding: 1rem;
    }
    
    .update-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Compact server cards in sidebars */
    .server-card-compact {
        padding: 0.75rem;
    }
    
    .server-card-compact h4 {
        font-size: 1rem;
    }
}
/* Review Replies Styles */
.review-replies {
    margin-left: 2rem;
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary);
}

.reply-card {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.reply-author {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.reply-date {
    color: var(--text-gray);
    font-size: 0.75rem;
}

.reply-text {
    color: var(--text);
    line-height: 1.5;
    font-size: 0.9rem;
}

.reply-form {
    margin-top: 1rem;
    display: none;
}

.reply-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    resize: vertical;
    min-height: 80px;
}

.reply-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-reply {
    padding: 0.4rem 0.8rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-reply:hover {
    background: var(--primary-dark);
}

/* Server Updates Styles */
.updates-section {
    margin-top: 2rem;
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-top: 2px solid var(--primary);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    color: var(--text);
    line-height: 1.6;
}

.cookie-text strong {
    font-size: 1.1rem;
    color: var(--primary);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: var(--primary-dark);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-accept {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.btn-accept:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-reject {
    background: var(--dark);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-reject:hover {
    background: var(--dark-lighter);
    border-color: var(--primary);
}

/* Mobile responsive cookie banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .btn-accept, .btn-reject {
        flex: 1;
        min-width: 120px;
    }
}

.update-card {
    background: var(--dark-card);
    border-left: 4px solid var(--secondary);
    border-radius: 8px;
    padding: 1.5rem;
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.update-title {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
}

.update-date {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.update-content {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.update-author {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-style: italic;
}