/* Custom CSS for Metin2 PvP Website */

/* General Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    
    /* Dark theme colors */
    --dark-bg-primary: #0f1419;
    --dark-bg-secondary: #1a1f2e;
    --dark-surface: #1e293b;
    --dark-surface-hover: #334155;
    --dark-text-primary: #f1f5f9;
    --dark-text-secondary: #e2e8f0;
    --dark-text-muted: #94a3b8;
    --dark-border: #475569;
}

/* Dark Theme Body */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, var(--dark-bg-primary), var(--dark-bg-secondary)) !important;
    color: var(--dark-text-secondary) !important;
    min-height: 100vh;
}

/* Navigation - keep existing functionality but improve colors */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Welcome Section */
.jumbotron {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Server Cards - Dark Theme */
.server-card {
    background: rgba(30, 41, 59, 0.95) !important;
    border: 1px solid rgba(71, 85, 105, 0.3) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.server-card:hover {
    transform: translateY(-2px);
    background: rgba(51, 65, 85, 0.95) !important;
    border-color: rgba(59, 130, 246, 0.5) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

/* Premium Server Card Design */
.premium-server-card {
    min-height: 280px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}



/* Server Banner Container */
.server-banner-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    overflow: hidden;
    border-radius: 12px 0 0 0;
    border: none;
    background: #0d0d18;
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-banner {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 0;
    background: #0d0d18;
}

.server-banner:hover {
    transform: scale(1.02);
}

.server-banner-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b, #334155, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    position: relative;
    overflow: hidden;
}

.server-banner-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(59, 130, 246, 0.1) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.placeholder-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.placeholder-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.placeholder-content .mt-2 {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Server Info Overlay */
.server-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
}

.server-title {
    font-size: 1.25rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.server-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

/* Star Rating */
.star-rating {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.star-rating i {
    font-size: 1rem;
    margin-right: 2px;
}

/* Server Meta Info */
.server-meta-info {
    margin-top: 12px;
    font-size: 0.75rem;
    opacity: 0.8;
}

.server-meta-info > div {
    margin-bottom: 2px;
}

/* Server Details Content */
.server-details-content {
    background: rgba(15, 23, 42, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.server-description p {
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Features Grid */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.feature-tag {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}





.vote-btn-premium {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: white;
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.vote-btn-premium:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-website {
    padding: 8px 16px;
    font-size: 0.875rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-website:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Responsive Design for Premium Cards */
@media (max-width: 768px) {
    .premium-server-card .row {
        flex-direction: column;
    }
    
    .server-banner-container {
        width: 100%;
        height: 156px; /* 468x190 oranında */
        border-radius: 12px 12px 0 0;
        border-bottom: none;
    }
    
    .server-details-content {
        padding: 1rem !important;
        border-radius: 0 0 12px 12px;
        border: 2px solid rgba(71, 85, 105, 0.3);
        border-top: none;
    }
    
    .server-stats {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .action-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Hover Effects */
.premium-server-card:hover .server-banner {
    transform: scale(1.05);
}

.premium-server-card:hover .vip-badge {
    animation-duration: 1s;
}

.rank-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.placeholder-banner {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #374151, #4b5563);
    border-radius: 8px;
}

.vote-section {
    padding: 1rem;
}

.vote-count {
    background: rgba(37, 99, 235, 0.2) !important;
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.features-tags {
    margin-top: 0.5rem;
}

.features-tags .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: rgba(37, 99, 235, 0.8) !important;
    color: white !important;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.vote-btn {
    background: linear-gradient(135deg, var(--success-color), #059669);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vote-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

/* Cards - Dark Theme */
.card {
    background: rgba(30, 41, 59, 0.95) !important;
    border: 1px solid rgba(71, 85, 105, 0.3) !important;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    color: var(--dark-text-secondary) !important;
    backdrop-filter: blur(10px);
}

.card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.card-header {
    background: linear-gradient(135deg, var(--dark-surface), var(--dark-surface-hover)) !important;
    color: var(--dark-text-primary) !important;
    border-radius: 12px 12px 0 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(71, 85, 105, 0.3) !important;
    padding: 1rem 1.5rem;
}

/* Form Controls - Dark Theme */
.form-control,
.form-select {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(71, 85, 105, 0.5) !important;
    color: var(--dark-text-secondary) !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background: rgba(15, 23, 42, 0.9) !important;
    border-color: var(--primary-color) !important;
    color: var(--dark-text-secondary) !important;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25) !important;
}

.form-control::placeholder {
    color: var(--dark-text-muted) !important;
}

/* Text colors for dark theme */
.text-muted {
    color: var(--dark-text-muted) !important;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-text-primary) !important;
}

/* Alerts - Dark Theme */
.alert {
    border-radius: 8px;
    border: none;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2)) !important;
    color: #34d399 !important;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2)) !important;
    color: #fb7185 !important;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2)) !important;
    color: #60a5fa !important;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Pagination - Dark Theme */
.pagination {
    --bs-pagination-color: var(--primary-color);
    --bs-pagination-hover-color: white;
    --bs-pagination-hover-bg: var(--primary-color);
    --bs-pagination-focus-color: var(--primary-color);
    --bs-pagination-active-color: white;
    --bs-pagination-active-bg: var(--primary-color);
    --bs-pagination-active-border-color: var(--primary-color);
}

.page-link {
    background: rgba(30, 41, 59, 0.95) !important;
    border: 1px solid rgba(71, 85, 105, 0.3) !important;
    color: var(--dark-text-secondary) !important;
    border-radius: 8px;
    margin: 0 2px;
    transition: all 0.3s ease;
}

.page-link:hover {
    transform: translateY(-1px);
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-color), #0f172a) !important;
}

footer .text-primary {
    color: #60a5fa !important;
}

/* Flag Icons */
.flag-icon {
    margin-right: 0.5rem;
}

/* Dropdown - Dark Theme */
.dropdown-menu {
    background: rgba(30, 41, 59, 0.95) !important;
    border: 1px solid rgba(71, 85, 105, 0.3) !important;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.dropdown-item {
    color: var(--dark-text-secondary) !important;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(59, 130, 246, 0.2) !important;
    color: var(--dark-text-primary) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .jumbotron {
        text-align: center;
    }
    
    .jumbotron .display-4 {
        font-size: 2rem;
    }
    
    .server-card .row {
        text-align: center;
    }
    
    .server-card .col-md-3,
    .server-card .col-md-6 {
        margin-bottom: 1rem;
    }
    
    .rank-badge {
        margin: 0 auto 1rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Statistics Cards - Dark Theme */
.stats-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stats-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.stats-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stats-label {
    color: var(--dark-text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 500;
}

/* Sidebar Statistics Grid */
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
}

.stat-item:hover {
    opacity: 0.8;
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.stat-icon.online {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.stat-icon.servers {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 2px 6px rgba(139, 92, 246, 0.3);
}

.stat-icon.votes {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
}

.stat-icon.users {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

.stat-icon.blog {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 2px 6px rgba(6, 182, 212, 0.3);
}

.stat-info {
    flex: 1;
    text-align: left;
}

.stat-number {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--dark-text-primary);
    line-height: 1.2;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--dark-text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Responsive design for statistics */
@media (max-width: 768px) {
    .stats-grid {
        gap: 6px;
    }
    
    .stat-item {
        padding: 0;
        gap: 6px;
    }
    
    .stat-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .stat-number {
        font-size: 0.95rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
}

/* Video Section Styles */
.video-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-thumbnail:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-thumbnail:hover .play-overlay {
    background: rgba(59, 130, 246, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.video-info {
    padding: 8px 0;
}

.video-title {
    margin-bottom: 6px;
}

.video-title a {
    color: var(--dark-text-primary) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.video-title a:hover {
    color: #60a5fa !important;
}

.video-title-link {
    color: var(--dark-text-primary) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    cursor: pointer;
    display: block;
}

.video-title-link:hover {
    color: #60a5fa !important;
}

.video-meta {
    font-size: 0.75rem;
    color: var(--dark-text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.video-meta i {
    font-size: 0.7rem;
    color: var(--primary-color);
}

/* Blog Posts Styles */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.6);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.blog-item:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.blog-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.blog-content {
    flex: 1;
    min-width: 0;
}

.blog-title {
    margin-bottom: 4px;
    font-size: 0.85rem;
    line-height: 1.3;
}

.blog-title a {
    color: var(--dark-text-primary) !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-title a:hover {
    color: #60a5fa !important;
}

.blog-meta {
    font-size: 0.7rem;
    color: var(--dark-text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-meta i {
    font-size: 0.65rem;
    color: var(--primary-color);
}

/* Responsive design for videos and blog */
@media (max-width: 768px) {
    .video-thumbnail {
        border-radius: 6px;
    }
    
    .play-overlay {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .video-title a {
        font-size: 0.85rem;
    }
    
    .video-meta {
        font-size: 0.7rem;
    }
    
    .blog-item {
        padding: 10px;
        gap: 10px;
    }
    
    .blog-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .blog-title {
        font-size: 0.8rem;
    }
    
    .blog-meta {
        font-size: 0.65rem;
    }
}

/* Modal - Dark Theme */
.modal-content {
    background: rgba(30, 41, 59, 0.95) !important;
    border: 1px solid rgba(71, 85, 105, 0.3) !important;
    color: var(--dark-text-secondary) !important;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6) !important;
    color: white !important;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid rgba(71, 85, 105, 0.3) !important;
}

/* Video Modal Styles */
.video-modal-content {
    background: rgba(15, 23, 42, 0.98) !important;
    border: 2px solid rgba(59, 130, 246, 0.3) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.video-modal-content .modal-header {
    background: linear-gradient(135deg, #1e40af, #3730a3) !important;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3) !important;
    padding: 1rem 1.5rem;
}

.video-modal-content .modal-title {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-modal-content .modal-title i {
    color: #60a5fa;
    font-size: 1.2rem;
}

.video-modal-content .btn-close {
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 6px !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    color: white !important;
    font-size: 1.2rem !important;
    padding: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.video-modal-content .btn-close:hover {
    background: rgba(239, 68, 68, 0.8) !important;
    border-color: rgba(239, 68, 68, 1) !important;
    opacity: 1 !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4) !important;
}

.video-modal-content .btn-close:focus {
    box-shadow: 0 0 0 0.25rem rgba(239, 68, 68, 0.5) !important;
}

/* Close button genel stil */
.btn-close {
    background: rgba(255, 255, 255, 0.9) !important;
    opacity: 1 !important;
    filter: none !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

.btn-close::before {
    content: "×" !important;
    color: #374151 !important;
    font-size: 20px !important;
    font-weight: bold !important;
    line-height: 1 !important;
}

.btn-close:hover::before {
    color: white !important;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    border-radius: 0 0 12px 12px;
    background: #000;
    border: none;
}

/* Modal backdrop */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(5px);
}

/* Responsive video modal */
@media (max-width: 768px) {
    .video-modal-content {
        margin: 10px;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .video-modal-content .modal-title {
        font-size: 1rem;
    }
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
}

/* Links - Dark Theme */
a {
    color: #60a5fa !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #93c5fd !important;
}

/* Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Custom Scrollbar - Dark Theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.5);
}

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

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .pagination {
        display: none !important;
    }
    
    .server-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
} 

/* Top Right Info Container */
.server-top-right-info {
    top: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* VIP Badge - Right Side */
.vip-badge-right {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.5);
    animation: vipGlowRight 2s ease-in-out infinite alternate;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes vipGlowRight {
    0% { 
        box-shadow: 0 3px 10px rgba(255, 107, 53, 0.5);
        transform: scale(1);
    }
    100% { 
        box-shadow: 0 5px 20px rgba(255, 107, 53, 0.8);
        transform: scale(1.05);
    }
}

.vip-badge-right i {
    margin-right: 4px;
    font-size: 0.8rem;
}

/* Server Type Badge */
.server-type-badge {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
}

/* Rank Badge - Updated Position */
.rank-badge {
    top: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Server Bottom Section - Left Aligned */
.server-bottom-section {
    margin-top: auto;
    padding: 20px;
    background: rgba(15, 23, 42, 0.9);
    border-top: 1px solid rgba(71, 85, 105, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 0 0 12px 12px;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.stats-and-actions-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}

/* Premium Stats Design - Updated for left alignment */
.server-stats-premium {
    display: flex;
    gap: 12px;
    align-items: center;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 41, 59, 0.9);
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 110px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-box:hover {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.stat-votes {
    border-color: rgba(16, 185, 129, 0.4);
}

.stat-votes:hover {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.stat-online {
    border-color: rgba(59, 130, 246, 0.4);
}

.stat-online:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.stat-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.stat-votes .stat-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.stat-online .stat-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.stat-content {
    text-align: left;
    min-width: 50px;
}

.stat-number-large {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-text-primary);
    line-height: 1;
}

.stat-label-premium {
    font-size: 0.65rem;
    color: var(--dark-text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

/* Action Buttons - Updated */
.action-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 10px;
}

.vote-btn-premium {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: white;
    padding: 10px 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.vote-btn-premium:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-website {
    padding: 10px 18px;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    color: var(--dark-text-secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-website:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* Responsive Design for Below Banner Stats */
@media (max-width: 768px) {
    .server-stats-actions-below {
        flex-direction: row;
        gap: 6px;
        align-items: center;
        padding: 6px;
        justify-content: flex-start;
    }
    
    .stats-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .stat-item-below {
        justify-content: center;
        font-size: 0.75rem;
        padding: 3px;
    }
    
    .actions-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .like-dislike-container {
        gap: 4px;
    }
    
    .btn-like-action,
    .btn-dislike-action,
    .btn-like-voted,
    .btn-dislike-voted {
        font-size: 0.7rem;
        padding: 2px;
        gap: 3px;
    }
    
    .vote-count {
        font-size: 0.7rem;
    }
    
    .btn-website-below {
        text-align: center;
        font-size: 0.7rem;
        padding: 3px 4px;
    }
} 

/* Banner Link Overlay */
.banner-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: all 0.3s ease;
    border-radius: 12px 0 0 0;
}

.banner-link-overlay:hover {
    background: rgba(59, 130, 246, 0.1);
    cursor: pointer;
}

/* Stats and Actions Below Banner */
.server-stats-actions-below {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 8px 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.stats-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.stat-item-below {
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    padding: 4px;
    border-radius: 0;
    color: var(--dark-text-primary);
    font-weight: 600;
    font-size: 0.8rem;
    border: none;
    transition: all 0.3s ease;
}

.stat-item-below:hover {
    transform: scale(1.05);
}

.stat-item-below i {
    font-size: 0.75rem;
    color: #3b82f6;
}

.actions-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Like/Dislike Container */
.like-dislike-container {
    display: flex;
    gap: 4px;
    align-items: center;
}

.vote-button-with-count {
    display: contents;
}

/* Like Button - Active */
.btn-like-action {
    background: transparent;
    color: #10b981;
    padding: 4px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-width: auto;
    height: auto;
    gap: 4px;
}

.btn-like-action:hover {
    color: #059669;
    text-decoration: none;
    transform: scale(1.1);
}

/* Dislike Button - Active */
.btn-dislike-action {
    background: transparent;
    color: #ef4444;
    padding: 4px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-width: auto;
    height: auto;
    gap: 4px;
}

.btn-dislike-action:hover {
    color: #dc2626;
    text-decoration: none;
    transform: scale(1.1);
}

/* Like Button - Voted */
.btn-like-voted {
    background: transparent;
    color: #10b981;
    padding: 4px;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.75rem;
    border: none;
    cursor: not-allowed;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-width: auto;
    height: auto;
    gap: 4px;
}

.btn-like-voted .vote-count {
    color: #10b981;
    font-weight: 700;
}

/* Dislike Button - Voted */
.btn-dislike-voted {
    background: transparent;
    color: #ef4444;
    padding: 4px;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.75rem;
    border: none;
    cursor: not-allowed;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-width: auto;
    height: auto;
    gap: 4px;
}

.btn-dislike-voted .vote-count {
    color: #ef4444;
    font-weight: 700;
}

/* Vote Count Text */
.vote-count {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.btn-website-below {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.15));
    color: #3b82f6;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
}

.btn-website-below:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(37, 99, 235, 0.25));
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
    text-decoration: none;
}

/* Server Header Info - Right Side */
.server-header-info {
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
    padding-bottom: 1rem;
}

/* Server Name Styling - Enhanced */
.server-name {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    position: relative;
}

.server-name a {
    background: linear-gradient(135deg, #60a5fa, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-decoration: none !important;
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(8px);
}

.server-name a:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px) scale(1.02);
    background-color: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
}

.server-name a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
    border-radius: 12px;
    z-index: -1;
    transition: all 0.3s ease;
}

.server-name a:hover:before {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.15));
    transform: scale(1.05);
}

/* Alternative Server Name Style with solid background */
.server-name-solid {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.server-name-solid a {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
    color: #60a5fa !important;
    text-decoration: none !important;
    padding: 10px 20px;
    border-radius: 15px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.server-name-solid a:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(245, 158, 11, 0.25));
    color: #fbbf24 !important;
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.3);
}

.server-name-solid a:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.server-name-solid a:hover:before {
    animation: shine 0.6s ease-in-out;
    opacity: 1;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.server-basic-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--dark-text-secondary);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-item i {
    font-size: 0.8rem;
}

.info-divider {
    color: var(--dark-text-muted);
    font-weight: bold;
}

.server-rating {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.server-rating i {
    font-size: 1rem;
    margin-right: 2px;
}

.server-meta-details {
    font-size: 0.85rem;
    color: var(--dark-text-muted);
}

.meta-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    font-size: 0.8rem;
}

/* Remove old overlay styles */
.server-info-overlay,
.server-title-section,
.server-subtitle,
.star-rating,
.server-meta-info {
    display: none !important;
}

/* CSS refresh */

/* Vote Bar General */
.vote-bar {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(51, 65, 85, 0.9));
    border-radius: 20px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(71, 85, 105, 0.3);
    backdrop-filter: blur(8px);
}

.vote-bar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Like Bar Specific */
.like-bar {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border-color: rgba(16, 185, 129, 0.4);
}

.like-bar:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(5, 150, 105, 0.3));
}

/* Dislike Bar Specific */
.dislike-bar {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    border-color: rgba(239, 68, 68, 0.4);
}

.dislike-bar:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(220, 38, 38, 0.3));
}

/* Vote Bar Link */
.vote-bar-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.85rem;
}

.vote-bar-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.vote-bar-link:hover i {
    transform: scale(1.2);
}

/* Voted State */
.vote-bar-link.voted {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Vote Bar Count */
.vote-bar-count {
    font-weight: 700;
    font-size: 0.9rem;
}

/* Server Detail Page Specific Styles */
.server-stats-row {
    border-top: 1px solid rgba(71, 85, 105, 0.3);
    padding-top: 1rem;
    margin-top: 1rem;
}

.stat-box {
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    margin: 0 4px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(15, 23, 42, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

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

/* Server Banner for Detail Page */
.server-banner-container {
    position: relative;
    width: 468px;
    max-width: 100%;
    height: 190px;
    overflow: hidden;
    border-radius: 12px 0 0 0;
}

.server-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.server-banner:hover {
    transform: scale(1.05);
}

/* Stats and Actions Below Banner for Detail Page */
.server-stats-actions-below {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
    padding: 12px;
    border-top: 1px solid rgba(71, 85, 105, 0.3);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item-below {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(30, 41, 59, 0.8);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    color: var(--dark-text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.stat-item-below:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

.stat-item-below i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.actions-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Like/Dislike Container for Detail Page */
.like-dislike-container {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

/* Views Display Styling */
.views-display {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(51, 65, 85, 0.9));
    border-radius: 20px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(71, 85, 105, 0.3);
    backdrop-filter: blur(8px);
    color: var(--dark-text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.views-display:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.views-display i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Server Details Content for Detail Page */
.server-details-content {
    background: rgba(15, 23, 42, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0 12px 12px 0;
}

/* Responsive Design for Detail Page */
@media (max-width: 768px) {
    .server-banner-container {
        width: 100%;
        height: 156px; /* 468x190 oranında */
        border-radius: 12px 12px 0 0;
    }
    
    .server-details-content {
        border-radius: 0 0 12px 12px;
    }
    
    .server-stats-row .col-3 {
        margin-bottom: 1rem;
    }
    
    .stat-box {
        margin: 0 2px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
} 

/* Server Description and Comments Styling */
.server-full-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-text-secondary);
    padding: 1rem 0;
}

.feature-tag-large {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-tag-large:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.3));
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

/* Comments Styling */
.comment-item {
    background: rgba(15, 23, 42, 0.4);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(71, 85, 105, 0.2);
    transition: all 0.3s ease;
}

.comment-item:hover {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(71, 85, 105, 0.4);
}

.comment-header {
    margin-bottom: 0.75rem;
}

.comment-content {
    background: rgba(30, 41, 59, 0.3);
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.comment-divider {
    border-color: rgba(71, 85, 105, 0.2);
    margin: 1.5rem 0;
}

.rating i {
    font-size: 0.9rem;
    margin-right: 2px;
}

/* Server Info Sidebar */
.server-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(71, 85, 105, 0.2);
    transition: all 0.3s ease;
}

.info-row:hover {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(71, 85, 105, 0.4);
}

.info-label {
    font-size: 0.85rem;
    color: var(--dark-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.info-value {
    font-weight: 500;
    color: var(--dark-text-secondary);
    text-align: right;
}

/* Similar Servers */
.similar-server-item {
    background: rgba(15, 23, 42, 0.4);
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid rgba(71, 85, 105, 0.2);
    transition: all 0.3s ease;
}

.similar-server-item:hover {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
}

.similar-server-item a:hover {
    color: #60a5fa !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .server-full-description {
        font-size: 0.9rem;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .info-value {
        text-align: left;
    }
    
    .comment-item {
        padding: 0.75rem;
    }
    
    .comment-content {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
} 

/* Sidebar Banner Ads - Enhanced Size */
.sidebar-ads {
	position: fixed;
    top: 13%;
    height: 82%;
    z-index: 1000;
    display: none;
}

.sidebar-ads.left {
    left: 3%
}

.sidebar-ads.right {
    right: 3%
}

.sidebar-ads img {
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-ads img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 0 3px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.4);
}

/* Banner pulse animation */
@keyframes bannerPulse {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.4),
            0 0 0 2px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.4),
            0 0 0 2px rgba(59, 130, 246, 0.3);
    }
}

.sidebar-ads img {
    animation: bannerPulse 4s ease-in-out infinite;
}

.sidebar-ads img:hover {
    animation-play-state: paused;
}

/* Center Banner Ad */
.center-banner-ad {
    max-width: 100%;
    overflow: hidden;
        margin: 0 auto;
    padding: 20px 0;
}

.center-banner-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(59, 130, 246, 0.2);
    background: transparent;
}

.center-banner-img:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.5);
}

.center-banner-ad a {
    display: inline-block;
    text-decoration: none;
}

/* Responsive design for center banner */
@media (max-width: 768px) {
    .center-banner-ad {
        padding: 15px 0;
    }
    
    .center-banner-ad .col-md-6 {
        margin-bottom: 15px;
    }
    
    .center-banner-img {
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .center-banner-img:hover {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    }
}

/* Content adjustment for sidebar ads */
@media (min-width: 1600px) {
    .sidebar-ads {
        display: block;
    }
    
    /* No content adjustment - banners stay outside */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .sidebar-ads {
       /* width: 250px;
        height: 675px;*/
    }
    
    .sidebar-ads.left {
        left: 10px;
    }
    
    .sidebar-ads.right {
        right: 10px;
    }
}

@media (min-width: 1800px) {
    .sidebar-ads {
      /*  width: 320px;
        height: 864px;*/
    }
    
    .sidebar-ads.left {
        left: 3%;
    }
    
    .sidebar-ads.right {
        right: 3%;
    }
}

@media (min-width: 2000px) {
    .sidebar-ads {
       /* width: 400px;
        height: 1080px;*/
    }
    
    .sidebar-ads.left {
        left: 6%;
    }
    
    .sidebar-ads.right {
        right: 6%;
    }
}

/* Hide sidebar ads on smaller screens */
@media (max-width: 1599px) {
    .sidebar-ads {
        display: none !important;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
    }
} 

/* Compact Header Styles */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid #f59e0b;
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Brand Styling */
.header-brand .brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    overflow: visible;
}

.header-brand .brand-logo {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    transform: scale(2.4);
    transform-origin: left center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-brand .brand-link:hover .brand-logo {
    transform: scale(2.5);
    opacity: 0.9;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f59e0b, #d97706, #92400e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.brand-icon i {
    font-size: 22px;
    color: white;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    color: #f59e0b;
    line-height: 1;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-login {
    padding: 7px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.15);
    color: #aaa;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
}

.btn-login:hover {
    border-color: rgba(255,255,255,.3);
    color: #e2e8f0;
    background: rgba(255,255,255,.06);
}

.btn-register {
    padding: 7px 16px;
    background: rgba(129,140,248,.15);
    border: 1px solid rgba(129,140,248,.35);
    color: #a5b4fc;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s;
}

.btn-register:hover {
    background: rgba(129,140,248,.28);
    border-color: rgba(129,140,248,.55);
    color: #c7d2fe;
}

/* User Menu */
.user-btn, .lang-btn {
    background: transparent;
    border: 1px solid #374151;
    color: #e5e7eb;
    padding: 8px 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.user-btn:hover, .lang-btn:hover {
    background: #374151;
    border-color: #4b5563;
}

/* Dropdown Menus */
.user-dropdown, .lang-dropdown {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    min-width: 180px;
}

.user-dropdown a, .lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.user-dropdown a:hover, .lang-dropdown a:hover {
    background: #374151;
    color: #f59e0b;
}

.user-dropdown a.active, .lang-dropdown a.active {
    background: #f59e0b;
    color: white;
}

/* Main Navigation - Professional Design */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    border-radius: 8px;
    white-space: nowrap;
    background: transparent;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.nav-link.active {
    color: #fbbf24;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(217, 119, 6, 0.3));
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Special Advertise Button */
.nav-item.advertise .nav-link {
    background: transparent;
    color: #22c55e !important;
    border: none;
    text-shadow: 
        0 0 10px rgba(34, 197, 94, 0.6),
        0 0 20px rgba(34, 197, 94, 0.4),
        0 0 30px rgba(34, 197, 94, 0.3);
    position: relative;
    overflow: hidden;
    margin: 0 4px;
    font-weight: 700;
    animation: advertiseGlow 2.5s ease-in-out infinite alternate;
}

.nav-item.advertise .nav-link:hover {
    background: transparent;
    transform: translateY(-2px) scale(1.1);
    color: #4ade80 !important;
    text-shadow: 
        0 0 15px rgba(34, 197, 94, 0.9),
        0 0 25px rgba(34, 197, 94, 0.7),
        0 0 35px rgba(34, 197, 94, 0.5);
    animation: advertiseFlash 0.8s ease-in-out infinite;
}

@keyframes advertiseGlow {
    0% {
        color: #22c55e;
        text-shadow: 
            0 0 10px rgba(34, 197, 94, 0.6),
            0 0 20px rgba(34, 197, 94, 0.4),
            0 0 30px rgba(34, 197, 94, 0.3);
    }
    50% {
        color: #4ade80;
        text-shadow: 
            0 0 15px rgba(34, 197, 94, 0.8),
            0 0 25px rgba(34, 197, 94, 0.6),
            0 0 35px rgba(34, 197, 94, 0.5);
        filter: brightness(1.2);
    }
    100% {
        color: #86efac;
        text-shadow: 
            0 0 20px rgba(34, 197, 94, 1),
            0 0 30px rgba(34, 197, 94, 0.8),
            0 0 40px rgba(34, 197, 94, 0.6);
        filter: brightness(1.4);
    }
}

@keyframes advertiseFlash {
    0%, 100% {
        color: #4ade80;
        text-shadow: 
            0 0 15px rgba(34, 197, 94, 0.9),
            0 0 25px rgba(34, 197, 94, 0.7),
            0 0 35px rgba(34, 197, 94, 0.5);
    }
    50% {
        color: #bbf7d0;
        text-shadow: 
            0 0 25px rgba(34, 197, 94, 1),
            0 0 35px rgba(34, 197, 94, 0.9),
            0 0 45px rgba(34, 197, 94, 0.7);
    }
}

.advertise-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}





.nav-item.special .nav-link {
    background: rgba(129,140,248,.12);
    border: 1px solid rgba(129,140,248,.3) !important;
    color: #a5b4fc !important;
    border-radius: 8px;
    margin: 0 4px;
    padding: 7px 16px;
    font-weight: 600;
}

.nav-item.special .nav-link:hover {
    background: rgba(129,140,248,.24);
    border-color: rgba(129,140,248,.5) !important;
    color: #c7d2fe !important;
    transform: none;
    box-shadow: none;
}

/* Sidebar Game Categories */
.sidebar-game-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-game-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark-text-secondary);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.sidebar-game-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-game-tab:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateX(5px);
    color: var(--dark-text-primary);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.sidebar-game-tab:hover::before {
    opacity: 1;
}

.sidebar-game-tab.active {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
    border-color: rgba(245, 158, 11, 0.5);
    color: #fbbf24;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.sidebar-game-tab.active::before {
    background: linear-gradient(180deg, transparent, #f59e0b, transparent);
    opacity: 1;
}

.sidebar-game-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.sidebar-game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.sidebar-game-tab:hover .sidebar-game-icon img {
    transform: scale(1.1);
}

.sidebar-game-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-game-name {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

.sidebar-game-count {
    font-size: 0.75rem;
    color: var(--dark-text-muted);
    opacity: 0.8;
}

.sidebar-game-tab:hover .sidebar-game-count {
    color: #60a5fa;
}

.sidebar-game-tab.active .sidebar-game-count {
    color: #fbbf24;
}







/* Responsive design for sidebar game categories */
@media (max-width: 768px) {
    .sidebar-game-tab {
        padding: 10px;
        gap: 10px;
    }
    
    .sidebar-game-icon {
        width: 35px;
        height: 35px;
    }
    
    .sidebar-game-name {
        font-size: 0.85rem;
    }
    
    .sidebar-game-count {
        font-size: 0.7rem;
    }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1040;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #f59e0b;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-nav {
    background: #1f2937;
    border-top: 2px solid #f59e0b;
}

.mobile-nav-content {
    padding: 20px;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 10px;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #e5e7eb;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-menu a:hover {
    background: #374151;
    color: #f59e0b;
}

.mobile-menu a.mobile-advertise {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border-radius: 8px;
    margin: 4px 0;
    position: relative;
}

.mobile-menu a.mobile-advertise:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    color: white;
}

.mobile-hot {
    font-size: 12px;
    margin-left: 8px;
    animation: bounce 1s ease-in-out infinite;
}

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

/* ============================================
   MINIMAL FOOTER STYLES
   ============================================ */

/* Main Footer Container */
.epic-footer {
    position: relative;
    background: #1e293b;
    color: #e2e8f0;
    padding: 60px 0 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(71, 85, 105, 0.3);
}



/* Footer Main Content */
.footer-main {
    margin-bottom: 40px;
}

/* Brand Section */

.brand-logo {
    display: flex;
    align-items: center;
        gap: 15px;
    margin-bottom: 20px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: #f59e0b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.logo-glow {
    display: none;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #f59e0b;
    margin: 0;
}

.brand-description {
    font-size: 16px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 25px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #94a3b8;
    text-decoration: none;
    background: rgba(71, 85, 105, 0.3);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #f59e0b;
    background: rgba(71, 85, 105, 0.5);
    transform: translateY(-2px);
}

.social-tooltip {
    display: none;
}

/* Statistics Section */

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.title-icon {
    font-size: 20px;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-card {
    background: rgba(71, 85, 105, 0.3);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(71, 85, 105, 0.4);
    border-color: rgba(245, 158, 11, 0.3);
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

.stat-glow {
    display: none;
}

/* Footer Links Section */

.language-switcher {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(71, 85, 105, 0.3);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 8px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lang-option:hover,
.lang-option.active {
    background: rgba(71, 85, 105, 0.5);
    border-color: rgba(245, 158, 11, 0.3);
    color: #f1f5f9;
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.current-indicator {
    margin-left: auto;
    color: #10b981;
    font-weight: bold;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(71, 85, 105, 0.3);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 8px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: rgba(71, 85, 105, 0.5);
    border-color: rgba(245, 158, 11, 0.3);
    color: #f1f5f9;
}

.quick-link.advertise:hover {
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 25px;
}

.footer-divider {
    margin-bottom: 25px;
}

.divider-line {
    height: 1px;
    background: rgba(71, 85, 105, 0.5);
}

.divider-glow {
    display: none;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #94a3b8;
}

.copyright-icon {
    font-size: 16px;
    color: #94a3b8;
}

.copyright-year {
    font-weight: 600;
    color: #f59e0b;
}

.copyright-text {
    font-weight: 500;
    color: #cbd5e1;
}

.copyright-subtitle {
    font-size: 14px;
    color: #94a3b8;
    margin-left: 5px;
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
        flex-wrap: wrap;
}

.legal-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.legal-link:hover {
    color: #f59e0b;
}

/* Floating Elements - Removed for minimal design */
.floating-elements {
    display: none;
}

.floating-particle {
    display: none;
}

/* ============================================
   SERVER BANNER REKLAM STYLES
   ============================================ */

/* Server Banner Reklamları - Sadece Resim */
.server-banner[style*="cursor: pointer"]:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Responsive Banner Boyutları */
@media (max-width: 768px) {
    .server-banner-container {
        width: 100%;
        height: 156px; /* 468x190 oranına göre hesaplandı */
    }
    
    .server-banner {
        width: 100%;
        height: 156px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .server-banner-container {
        width: 100%;
        height: 125px; /* 468x190 oranına göre hesaplandı */
    }
    
    .server-banner {
        width: 100%;
        height: 125px;
        max-width: 100%;
    }
}

/* ============================================
   FOOTER GAME CATEGORIES STYLES
   ============================================ */

/* Game Categories Section */
.footer-categories {
    color: #e2e8f0;
}

.categories-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(71, 85, 105, 0.3);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 8px;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.category-item:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    color: #93c5fd;
    transform: translateX(5px);
}

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

.category-count {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 400;
}

/* Popular Games */
.popular-games {
    border-top: 1px solid rgba(71, 85, 105, 0.3);
    padding-top: 16px;
}

.games-title {
    color: #f1f5f9;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.games-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.game-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    font-size: 11px;
    color: #93c5fd;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-tag:hover {
    background: rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
    color: #dbeafe;
    transform: scale(1.05);
}

.game-icon {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-tag:hover .game-icon {
    transform: scale(1.1);
}

/* Responsive Categories */
@media (max-width: 768px) {
    .categories-grid {
        gap: 6px;
    }
    
    .category-item {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .games-title {
        font-size: 15px;
    }
    
    .game-tag {
        font-size: 10px;
        padding: 3px 6px;
    }
}

/* ============================================
   REKLAM ALANLARI STYLES (UNUSED)
   ============================================ */

/* Genel Reklam Stili */
.ad-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.ad-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
}

.ad-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ad-item:hover .ad-image {
    transform: scale(1.02);
}

/* Sidebar Reklamları */
.sidebar-ad {
    height: 120px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1e293b, #334155);
}

.ad-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 15px;
    text-align: center;
}

.game-logo {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    color: #fbbf24;
}

.game-tagline {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.play-now-btn {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.sidebar-ad:hover .play-now-btn {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    transform: scale(1.05);
}

/* Banner Reklamı (Ana Üst) */
.banner-ad {
    height: 150px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    position: relative;
}

.banner-ad-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
        justify-content: center;
}

.banner-ad-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.game-title {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
    color: #fbbf24;
    text-transform: uppercase;
}

.banner-ad-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.banner-ad-content p {
    font-size: 16px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.banner-cta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.banner-ad:hover .banner-cta {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Orta Reklam (Server Listesi Arası) */
.middle-ad {
    height: 100px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 12px;
}

.middle-ad-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    padding: 20px;
}

.middle-ad-content {
    color: white;
    width: 100%;
}

.ad-label {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: inline-block;
}

.middle-ad-content h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.middle-ad-content p {
        font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.download-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    color: #92400e;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.middle-ad:hover .download-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
}

/* Alt Reklam (Pagination Öncesi) */
.bottom-ad {
    height: 130px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 12px;
}

.bottom-ad-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
        display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
}

.bottom-ad-content {
    color: white;
    flex: 1;
}

.ad-sponsor {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: inline-block;
}

.bottom-ad-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.bottom-ad-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.ad-button {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.bottom-ad:hover .ad-button {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.tournament-date {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Widget Başlığı */
.widget-title {
    color: #f1f5f9;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-title i {
    color: #f59e0b;
}

/* Responsive Reklam Tasarımı */
@media (max-width: 768px) {
    .banner-ad {
        height: 120px;
    }
    
    .game-title {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .banner-ad-content h4 {
        font-size: 16px;
    }
    
    .banner-ad-content p {
        font-size: 14px;
    }
    
    .middle-ad {
        height: 80px;
    }
    
    .middle-ad-overlay {
        padding: 15px;
    }
    
    .middle-ad-content h5 {
        font-size: 16px;
    }
    
    .download-btn {
        padding: 8px 12px;
        font-size: 10px;
        right: 15px;
    }
    
    .bottom-ad {
        height: 100px;
    }
    
    .bottom-ad-overlay {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .bottom-ad-content h4 {
        font-size: 16px;
    }
    
    .tournament-date {
        position: static;
        display: inline-block;
        margin-top: 8px;
    }
    
    .sidebar-ad {
        height: 100px;
    }
    
    .game-logo {
        font-size: 14px;
    }
    
    .play-now-btn {
        padding: 3px 8px;
        font-size: 9px;
    }
}

@media (max-width: 576px) {
    .banner-ad-content {
        padding: 15px;
    }
    
    .game-title {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
    
    .banner-ad-content h4 {
        font-size: 14px;
    }
    
    .banner-ad-content p {
        font-size: 12px;
    }
    
    .middle-ad-content h5 {
        font-size: 14px;
    }
    
    .middle-ad-content p {
        font-size: 12px;
    }
    
    .download-btn {
        padding: 6px 10px;
        font-size: 9px;
        right: 10px;
    }
    
    .bottom-ad-content h4 {
        font-size: 14px;
    }
    
    .bottom-ad-content p {
        font-size: 12px;
    }
    
    .game-logo {
        font-size: 12px;
    }
    
    .game-tagline {
        font-size: 10px;
    }
    
    .play-now-btn {
        padding: 2px 6px;
        font-size: 8px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1px;
        padding: 4px;
    }
    
    .nav-link {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 991.98px) {
    .header-content {
        flex-direction: column;
        gap: 12px;
        padding: 15px 20px;
    }
    
    .nav-link {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 767.98px) {
    .header-brand .brand-name {
        font-size: 20px;
    }
    
    .header-actions {
        justify-content: center;
        gap: 8px;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* Footer Mobile Responsive */
    .epic-footer {
        padding: 40px 0 20px;
    }
    
    .brand-logo {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .brand-name {
        font-size: 22px;
    }
    
    .social-links {
        justify-content: center;
        gap: 10px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 18px;
        text-align: center;
        justify-content: center;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 12px;
    }
    
    .copyright {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .epic-footer {
        padding: 30px 0 15px;
    }
    
    .brand-name {
        font-size: 18px;
    }
    
    .brand-description {
        font-size: 14px;
        text-align: center;
    }
    
    .stats-grid {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    
    .stat-card {
        padding: 10px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .legal-link {
        font-size: 12px;
    }
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.toast-content i {
    font-size: 18px;
    flex-shrink: 0;
}

.toast-content span {
    color: var(--dark-text-secondary);
    font-size: 14px;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--dark-text-muted);
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    color: var(--dark-text-secondary);
    background: rgba(71, 85, 105, 0.3);
}

/* Toast Types */
.toast-success {
    border-left: 4px solid var(--success-color);
}

.toast-success .toast-content i {
    color: var(--success-color);
}

.toast-error {
    border-left: 4px solid var(--danger-color);
}

.toast-error .toast-content i {
    color: var(--danger-color);
}

.toast-info {
    border-left: 4px solid var(--info-color);
}

.toast-info .toast-content i {
    color: var(--info-color);
}

/* Modal Styles */
.modal-content {
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.modal-header {
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
    background: rgba(51, 65, 85, 0.3);
}

.modal-title {
    color: var(--dark-text-secondary);
}

.modal-body {
    color: var(--dark-text-secondary);
}

.modal-footer {
    border-top: 1px solid rgba(71, 85, 105, 0.3);
    background: rgba(51, 65, 85, 0.3);
}

/* Form Controls in Modal */
.modal .form-control {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(71, 85, 105, 0.5);
    color: var(--dark-text-secondary);
}

.modal .form-control:focus {
    background: rgba(30, 41, 59, 0.9);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.modal .form-label {
    color: var(--dark-text-secondary);
}

.modal .form-check-label {
    color: var(--dark-text-secondary);
}

.modal .btn-close {
    filter: invert(1);
}

/* Responsive */
@media (max-width: 768px) {
    .toast-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
    
    .modal-dialog {
        margin: 10px;
    }
}
/* ============================================
   Server Hero Redesign
   ============================================ */
.server-hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.server-hero-banner {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.05);
}
.server-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}
.server-hero-stats {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 10px;
}
.server-hero-stats .stat {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  backdrop-filter: blur(6px);
}
.server-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.server-hero-actions .like-dislike-container {
  display: flex;
  gap: 12px;
}
.server-hero-cta {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.server-hero-cta .btn {
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
  .server-hero { min-height: 220px; }
  .server-hero-banner { max-height: 260px; }
}

/* ============================================
   Modern Server Detail Container
   ============================================ */
.server-detail-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    min-height: 500px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Banner Section */
.server-banner-section {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(45deg, #0f0f23, #16213e);
}

.banner-wrapper {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.server-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.server-banner-image:hover {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.server-quick-stats {
    display: flex;
    gap: 15px;
    align-self: flex-end;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-stat i {
    font-size: 1.1rem;
    color: #ffd700;
}

/* Vote Actions Panel */
.vote-actions-panel {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vote-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.vote-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.vote-btn::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;
}

.vote-btn:hover::before {
    left: 100%;
}

.vote-like {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-color: #28a745;
}

.vote-like:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

.vote-dislike {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
    border-color: #dc3545;
}

.vote-dislike:hover {
    background: linear-gradient(135deg, #c82333, #d62c1a);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
}

.vote-btn.voted {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: #adb5bd;
    cursor: not-allowed;
}

.vote-btn i {
    font-size: 1.2rem;
}

.vote-btn span {
    font-size: 1rem;
    font-weight: 700;
}

/* External Links */
.external-links {
    display: flex;
    gap: 10px;
}

.external-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.website-link {
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    color: #000;
}

.website-link:hover {
    background: linear-gradient(135deg, #e0a800, #e67e00);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

.discord-link {
    background: linear-gradient(135deg, #7289da, #5865f2);
    color: white;
}

.discord-link:hover {
    background: linear-gradient(135deg, #677bc4, #4752c4);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(114, 137, 218, 0.4);
}

/* Server Info Section */
.server-info-section {
    padding: 30px;
    background: linear-gradient(135deg, #1e1e2e 0%, #2d3748 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Server Header */
.server-header {
    margin-bottom: 25px;
}

.server-title-area {
    margin-bottom: 15px;
}

.server-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.server-subtitle {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.category-badge,
.level-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-badge {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
}

.level-badge {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
    color: white;
}

/* Rating Area */
.server-rating-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.star-rating {
    display: flex;
    gap: 3px;
}

.star-rating i {
    font-size: 1.3rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-details {
    text-align: right;
}

.rating-score {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.rating-count {
    font-size: 0.9rem;
    color: #adb5bd;
}

/* Meta Grid */
.server-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.meta-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    flex-shrink: 0;
}

.meta-icon i {
    font-size: 1.2rem;
}

.meta-content {
    flex: 1;
}

.meta-label {
    font-size: 0.85rem;
    color: #adb5bd;
    margin-bottom: 4px;
}

.meta-value {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Description Preview */
.server-description-preview {
    margin: 25px 0;
}

.description-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffd700;
}

.description-text {
    line-height: 1.6;
    color: #e2e8f0;
    font-size: 0.95rem;
}

/* Features */
.server-features {
    margin-top: 25px;
}

.features-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffd700;
}

.features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    padding: 6px 12px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #000;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(79, 172, 254, 0.4);
}

.feature-tag.more {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .server-detail-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .server-banner-section {
        min-height: 300px;
    }
    
    .server-info-section {
        padding: 20px;
    }
    
    .server-title {
        font-size: 1.5rem;
    }
    
    .server-meta-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .vote-buttons {
        flex-direction: column;
    }
    
    .external-links {
        flex-direction: column;
    }
    
    .server-subtitle {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .server-info-section {
        padding: 15px;
    }
    
    .server-title {
        font-size: 1.3rem;
    }
    
    .quick-stat {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .vote-btn {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .meta-item {
        padding: 12px;
    }
    
    .meta-icon {
        width: 35px;
        height: 35px;
    }
}

/* ============================================
   SRV26 — Modern 2026 Server Card
   ============================================ */
.srv26-card {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    transition: border-color .25s, transform .25s;
}
.srv26-card:hover {
    border-color: rgba(102,126,234,.45);
    transform: translateY(-2px);
}

/* Banner */
.srv26-banner-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    text-decoration: none;
}
.srv26-banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #0d0d18;
    transition: transform .4s ease;
    display: block;
}
.srv26-banner-wrap:hover .srv26-banner-img { transform: scale(1.04); }

.srv26-banner-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.05) 30%, rgba(0,0,0,.55) 100%);
    pointer-events: none;
}

/* Chips on banner */
.srv26-rank {
    position: absolute;
    top: 12px; left: 14px;
    background: linear-gradient(135deg,#667eea,#764ba2);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    padding: 4px 11px;
    border-radius: 20px;
    letter-spacing: .4px;
    box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.srv26-lvl {
    position: absolute;
    top: 12px; right: 14px;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(6px);
    color: #a78bfa;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(167,139,250,.3);
}
.srv26-cat {
    position: absolute;
    bottom: 12px; left: 14px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    color: #e2e8f0;
    font-size: .73rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Info row */
.srv26-body {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.srv26-left { flex: 1; min-width: 0; }

/* Name row */
.srv26-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.srv26-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f1f5f9;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .2s;
}
.srv26-name:hover { color: #a78bfa; }
.srv26-vip {
    flex-shrink: 0;
    background: linear-gradient(135deg,#f59e0b,#d97706);
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: .3px;
}

/* Meta pills */
.srv26-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 7px;
}
.srv26-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .73rem;
    font-weight: 500;
    color: #94a3b8;
    background: rgba(255,255,255,.05);
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.07);
}
.srv26-views {
    color: #67e8f9 !important;
    border-color: rgba(103,232,249,.2) !important;
    background: rgba(103,232,249,.07) !important;
}
.srv26-desc {
    color: #64748b;
    font-size: .75rem;
    margin: 0 0 7px;
    line-height: 1.5;
}

/* Feature tags */
.srv26-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.srv26-tag {
    background: rgba(102,126,234,.12);
    border: 1px solid rgba(102,126,234,.25);
    color: #a78bfa;
    font-size: .7rem;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 20px;
}

/* Vote buttons */
.srv26-votes { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; }
.srv26-vbtn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    min-width: 72px;
    justify-content: center;
}
.srv26-like {
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.3);
    color: #4ade80;
}
.srv26-like:hover { background: rgba(34,197,94,.22); color: #4ade80; }
.srv26-dislike {
    background: rgba(239,68,68,.10);
    border: 1px solid rgba(239,68,68,.25);
    color: #f87171;
}
.srv26-dislike:hover { background: rgba(239,68,68,.2); color: #f87171; }
.srv26-vbtn.voted { opacity: .55; cursor: default; pointer-events: none; }
.srv26-detail {
    background: rgba(102,126,234,.13);
    border: 1px solid rgba(102,126,234,.3);
    color: #818cf8;
    margin-top: 2px;
}
.srv26-detail:hover { background: rgba(102,126,234,.25); color: #a5b4fc; }

@media (max-width: 576px) {
    .srv26-banner-wrap { height: 150px; }
    .srv26-body { flex-direction: column; align-items: flex-start; }
    .srv26-votes { flex-direction: row; }
}