/* metin2pvpsunuculari.com - Main Stylesheet */

/* CSS Variables - Dark Orange Theme */
:root {
    --primary-color: #FF8C00; /* Turuncu - Primary Accent */
    --secondary-color: #00CED1; /* Teal/Turkuaz - Secondary Accent */
    --success-color: #10b981; /* Ye�il - Success */
    --warning-color: #FFD700; /* Sar� - Warning */
    --danger-color: #FF0000; /* K�rm�z� - Danger */
    --dark-bg: #1A1A1A; /* �ok Koyu Gri/Siyah - Ana Arka Plan */
    --dark-card: #282828; /* Koyu Gri - Kartlar/Paneller */
    --dark-hover: #3A3A3A; /* Hover Rengi */
    --text-primary: #FFFFFF; /* Beyaz - Ana Yaz� */
    --text-secondary: #A0A0A0; /* A��k Gri - �kincil Yaz� */
    --border-color: #3A3A3A; /* Koyu Gri - Kenarl�klar */
    --gradient-1: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%); /* Turuncu Gradient */
    --gradient-2: linear-gradient(135deg, #00CED1 0%, #00B4B4 100%); /* Teal Gradient */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FFA500; /* A��k turuncu hover */
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* New Header & Navigation */
.header-new {
    background: #1A1A1A;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #3A3A3A;
}

.navbar-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    gap: 2rem;
}

.brand-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FF8C00;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.brand-logo-img {
    max-height: 60px;
    height: auto;
    width: auto;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    color: #FFA500;
}

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

.nav-menu-new {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu-new li {
    margin: 0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.75rem 1.25rem;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    min-width: 80px;
    text-align: center;
}

.nav-item i,
.nav-item span {
    color: white;
    transition: color 0.3s ease;
}

.nav-item i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.nav-item span {
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.nav-item:hover {
    background: rgba(255, 140, 0, 0.2);
    transform: translateY(-2px);
    border-color: #FF8C00;
}

.nav-item:hover,
.nav-item:hover .icon-group,
.nav-item:hover .icon-group i,
.nav-item:hover i,
.nav-item:hover span {
    color: #FF8C00 !important;
}

.nav-item.active {
    background: #9f7c52;
    box-shadow: 0 4px 8px rgba(185 135 74 / 40%);
}

.nav-item.active,
.nav-item.active .icon-group,
.nav-item.active .icon-group i,
.nav-item.active i,
.nav-item.active span {
    color: white !important;
}

.icon-group {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.icon-group i {
    font-size: 1rem;
    transition: color 0.3s ease;
}

/* Old Header (keep for compatibility) */
.header {
    background: var(--dark-card);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

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

.nav-menu li a {
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    background: var(--dark-hover);
    color: var(--primary-color);
}

.nav-menu li a.active {
    background: var(--primary-color);
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--dark-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--dark-hover);
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Cards */
.card {
    background: var(--dark-card);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.card-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

/* Server Card */
.server-card {
    position: relative;
    overflow: hidden;
}

.server-card.premium {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #282828 0%, #3A2A1A 100%);
}

.premium-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gradient-1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
}

.server-banner {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

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

.server-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.type-emek { background: #ef4444; color: white; }
.type-farm { background: #10b981; color: white; }
.type-wslik { background: #FF8C00; color: white; }
.type-newschool { background: #00CED1; color: white; }
.type-oldschool { background: #800080; color: white; }

.difficulty-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.difficulty-easy { background: rgba(16, 185, 129, 0.2); color: #10b981; }
.difficulty-medium { background: rgba(245, 158, 11, 0.2); color: #FF8C00; }
.difficulty-hard { background: rgba(239, 68, 68, 0.2); color: #ef4444; }

.server-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.stat-item i {
    color: var(--primary-color);
}

/* Main Layout */
.main-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

.sidebar-left {
    position: sticky;
    top: 100px;
}

.main-content-area {
    width: 100%;
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Filters Section */
.filters-section {
    background: var(--dark-card);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.filter-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-title i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

/* Search Input */
.search-input-wrapper {
    position: relative;
}

.filter-search-input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--dark-bg);
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.filter-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.filter-search-input::placeholder {
    color: var(--text-secondary);
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

/* Filter Group */
.filter-group {
    margin-bottom: 1rem;
}

.filter-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.filter-select {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: #3A3A3A;
    color: white;
    font-size: 0.875rem;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.filter-select:hover {
    border-color: var(--primary-color);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.btn-filter {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-clear {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    background: var(--dark-hover);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.btn-clear:hover {
    background: #3A3A3A;
    transform: translateY(-2px);
}

/* Popular Tags */
.popular-tags-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.popular-tags-label {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.popular-tags .tag {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.popular-tags .tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tag-green { background: #10b981; }
.tag-purple { background: #800080; }
.tag-light-green { background: #34d399; }
.tag-dark-purple { background: #800080; }
.tag-yellow { background: #FFD700; }
.tag-red { background: #ef4444; }

/* Old Filter Styles (for compatibility) */
.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--dark-bg);
    color: var(--text-primary);
    font-size: 1rem;
}

/* Sidebar Blog Section */
.sidebar-blog-section {
    background: var(--dark-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.sidebar-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sidebar-section-title i {
    color: var(--primary-color);
    font-size: 0.8125rem;
}

.blog-posts-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blog-post-item {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-color);
}

.blog-post-item:first-child {
    padding-top: 0;
}

.blog-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-post-link {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-post-link:hover .blog-post-title {
    color: var(--primary-color);
}

.blog-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

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

.blog-post-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.8125rem;
    line-height: 1.4;
    margin: 0 0 0.375rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.blog-post-meta {
    display: flex;
    gap: 0.5rem;
    font-size: 0.6875rem;
    color: var(--text-secondary);
}

.blog-category {
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tag {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: var(--dark-hover);
    color: var(--text-primary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: white;
}

/* Blog */
.blog-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Stats Section */
.site-stats-section {
    background: var(--dark-card);
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

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

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

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

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

.stat-card {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.9rem;
}

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

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

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

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

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: var(--dark-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.pagination a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination .active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--dark-bg);
    color: var(--text-primary);
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger-color);
    color: var(--danger-color);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--warning-color);
    color: var(--warning-color);
}

/* Responsive */
@media (max-width: 1200px) {
    .main-layout {
        grid-template-columns: 250px 1fr;
    }
    
    .trending-card {
        min-width: calc(33.333% - 1rem);
    }
    
    .stats-grid-horizontal {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trending-section-card {
        padding: 1.5rem;
    }
    
    .trending-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 992px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar-left {
        position: static;
    }
    
    .trending-card {
        min-width: calc(50% - 0.75rem);
    }
    
    .server-list-card {
        gap: 1rem;
        padding: 1rem;
    }
    
    .server-list-left {
        width: 90px;
    }
    
    .server-list-thumb {
        width: 90px;
        height: 68px;
    }
    
    .server-list-header h3 {
        font-size: 1rem;
    }
    
    .server-description {
        font-size: 0.8125rem;
    }
    
    .server-list-actions .btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
        min-width: 70px;
    }
    
    .stats-grid-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu-new {
        gap: 0.25rem;
    }
    
    .nav-item {
        padding: 0.5rem 0.75rem;
        min-width: 60px;
    }
    
    .nav-item span {
        font-size: 0.7rem;
    }
}

@media (max-width: 992px) {
    .servers-header-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .servers-sort-control {
        width: 100%;
        justify-content: space-between;
    }
    
    .sort-select {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .trending-section-card {
        padding: 1rem;
        border-width: 1px;
    }
    
    .trending-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .trending-title {
        font-size: 1rem;
    }
    
    .premium-buy-btn {
        width: 100%;
        text-align: center;
    }
    
    .servers-header-card {
        padding: 1.5rem;
    }
    
    .servers-main-title {
        font-size: 1.25rem;
    }
    
    .result-count {
        font-size: 1.125rem;
    }
    
    .servers-subtitle {
        font-size: 0.8125rem;
    }
    
    .servers-sort-control {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .sort-select {
        width: 100%;
        min-width: 100%;
    }
    
    .navbar-new {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu-new {
        width: 100%;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    
    .nav-item {
        min-width: 70px;
        padding: 0.5rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .filters-section {
        padding: 1rem;
    }
    
    .filter-buttons {
        flex-direction: row;
    }
    
    .popular-tags .tag {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .sidebar-blog-section {
        padding: 1rem;
    }
    
    .trending-card {
        min-width: 100%;
    }
    
    .carousel-wrapper {
        padding: 0 30px;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
    }
    
    .servers-list-container {
        border-radius: 8px;
    }
    
    .server-list-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .server-list-card.premium {
        border-left: none;
        border-top: 3px solid #FF8C00;
    }
    
    .server-list-left {
        width: 100%;
    }
    
    .server-list-thumb {
        width: 100%;
        height: 120px;
    }
    
    .server-list-header {
        width: 100%;
    }
    
    .server-list-actions {
        width: 100%;
        flex-direction: row;
    }
    
    .server-list-actions .btn {
        flex: 1;
    }
    
    .sort-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sort-bar select {
        width: 100%;
        max-width: 100%;
    }
    
    .stats-grid-horizontal {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

/* Trending Section Wrapper */
.trending-section-wrapper {
    margin-bottom: 3rem;
}

.trending-section-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.05) 100%);
    border: 2px solid #FF8C00;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
}

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

.trending-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trending-title i {
    color: #FF8C00;
    font-size: 1.25rem;
}

.premium-buy-btn {
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.premium-buy-btn:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.trending-carousel-container {
    overflow: hidden;
    width: 100%;
}

.trending-carousel {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.trending-carousel.animating {
    transition: transform 0.5s ease;
}

.trending-card {
    position: relative;
    min-width: calc(25% - 1.125rem);
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.trending-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.3);
    border-color: #FF8C00;
}

.trending-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    transition: all 0.3s ease;
}

.trending-card:hover .trending-card-bg {
    filter: brightness(0.6);
    transform: scale(1.05);
}

.trending-card-overlay {
    position: relative;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
}

.trending-card-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.trending-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.trending-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge-legal {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dark-hover);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Premium Area Card */
.premium-area-card {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L35 20L55 15L40 30L55 45L35 40L30 60L25 40L5 45L20 30L5 15L25 20Z' fill='white' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 100px;
}

.premium-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
}

.premium-content {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.premium-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.premium-content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.btn-premium-contact {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-premium-contact:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Servers List Section */
.servers-list-section {
    margin-top: 3rem;
}

/* Servers Header Card */
.servers-header-card {
    background: var(--dark-card);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.servers-header-content {
    flex: 1;
}

.servers-main-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.5px;
}

.result-count {
    color: var(--text-secondary);
    font-size: 1.5rem;
    font-weight: 600;
}

.servers-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.servers-subtitle strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Sort Control */
.servers-sort-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}

.servers-sort-control label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.sort-dropdown {
    position: relative;
}

.sort-select {
    background: linear-gradient(135deg, #282828 0%, #3A3A3A 100%);
    border: 2px solid #FF8C00;
    border-radius: 8px;
    color: white;
    padding: 0.75rem 3rem 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    min-width: 250px;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.sort-select:hover {
    border-color: #FFD700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.sort-select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.section-header {
    margin-bottom: 2rem;
}

.sort-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sort-bar label {
    color: var(--text-primary);
    font-weight: 600;
}

.sort-bar select {
    max-width: 300px;
}

.servers-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Servers List Container - Single Big Card */
.servers-list-container {
    background: var(--dark-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

/* Server List Card - Individual Server Row */
.server-list-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.server-list-card:last-child {
    border-bottom: none;
}

.server-list-card:hover {
    background: rgba(99, 102, 241, 0.05);
}

.server-list-card.premium {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.05) 0%, transparent 100%);
    border-left: 3px solid #FF8C00;
}

.server-list-left {
    position: relative;
    flex-shrink: 0;
}

.server-list-thumb {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.server-list-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.server-list-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.server-description {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    font-size: 0.875rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.server-list-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0.625rem;
}

.meta-item {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

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

.server-list-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.server-list-actions .btn {
    min-width: 80px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.p-1 { padding: 0.5rem !important; }
.p-2 { padding: 1rem !important; }
.p-3 { padding: 1.5rem !important; }
.p-4 { padding: 2rem !important; }

/* ==== SIMPLIFIED LAYOUT FOR metin2pvpsunuculari.com ==== */

/* Page Structure */
.page-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.left-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 90px;
}

.main-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Filter Card */
.filter-card,
.blog-card-sidebar {
    background: #282828;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #3A3A3A;
}

.filter-card-title,
.blog-card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1.25rem 0;
    text-transform: uppercase;
}

.filter-card-title i,
.blog-card-title i {
    color: #6366f1;
}

/* Form Elements */
.filter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #f1f5f9;
}

.input-with-icon {
    position: relative;
}

.input-search,
.select-filter {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #3A3A3A;
    background: #1A1A1A;
    color: white;
    font-size: 0.875rem;
}

.select-filter {
    background: #3A3A3A;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.icon-right {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.filter-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-orange {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #FF8C00, #FF6B00);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
}

.btn-gray {
    flex: 1;
    padding: 0.75rem;
    border-radius: 8px;
    background: #3A3A3A;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
}

/* Tags */
.tags-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #3A3A3A;
}

.tags-title {
    font-size: 0.8125rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.tag-green { background: #10b981; }
.tag-purple { background: #800080; }
.tag-light-green { background: #34d399; }
.tag-dark-purple { background: #800080; }
.tag-yellow { background: #FFD700; }
.tag-red { background: #ef4444; }

/* Blog List */
.blog-list {
    display: flex;
    flex-direction: column;
}

.blog-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid #3A3A3A;
    text-decoration: none;
}

.blog-item:first-child { padding-top: 0; }
.blog-item:last-child { border-bottom: none; padding-bottom: 0; }

.blog-emoji {
    font-size: 1rem;
}

.blog-content {
    flex: 1;
}

.blog-title {
    color: white;
    font-weight: 600;
    font-size: 0.8125rem;
    line-height: 1.4;
    margin: 0 0 0.375rem 0;
}

.blog-item:hover .blog-title {
    color: #6366f1;
}

.blog-meta {
    font-size: 0.6875rem;
    color: #94a3b8;
}

.blog-cat {
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    background: #6366f1;
    color: white;
    margin-left: 0.5rem;
}

/* Trending Box */
.trending-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), rgba(217, 119, 6, 0.03));
    border: 2px solid #FF8C00;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.15);
    margin-bottom: 2rem;
}

.trending-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.trending-heading {
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.trending-heading i {
    color: #FF8C00;
}

.btn-premium-top {
    background: linear-gradient(135deg, #FF8C00, #FF6B00);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
}

/* Slider */
.slider-container {
    position: relative;
    padding: 0 50px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.slider-arrow:hover { background: #6366f1; }
.slider-left { left: 0; }
.slider-right { right: 0; }

.slider-viewport {
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.trend-card {
    position: relative;
    min-width: calc(25% - 1.125rem);
    height: 260px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.3);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.trend-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
    border-color: #FF8C00;
}

.trend-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.trend-overlay {
    position: relative;
    height: 100%;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
}

.trend-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
}

.trend-info,
.trend-status {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.info-tag,
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.info-tag {
    background: rgba(0, 0, 0, 0.5);
    color: white;
}

.badge-kolay { background: rgba(16, 185, 129, 0.25); color: #10b981; }
.badge-orta { background: rgba(245, 158, 11, 0.25); color: #FFD700; }
.badge-zor { background: rgba(239, 68, 68, 0.25); color: #f87171; }
.badge-legal { background: rgba(16, 185, 129, 0.25); color: #10b981; }

.btn-purple {
    background: linear-gradient(135deg, #800080, #800080);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
}

.premium-box {
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.premium-star {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.premium-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0 0 0.5rem 0;
}

.premium-text {
    color: white;
    margin-bottom: 1.5rem;
}

.btn-premium-dark {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3A3A3A;
    cursor: pointer;
}

.dot.active {
    background: #6366f1;
    width: 30px;
    border-radius: 5px;
}

/* Server Section */
.server-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.server-header-box {
    background: #282828;
    border-radius: 12px;
    padding: 1.75rem 2rem;
    border: 1px solid #3A3A3A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.server-heading {
    font-size: 1.625rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.625rem 0;
}

.count-text {
    color: #94a3b8;
    font-size: 1.375rem;
}

.server-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.server-desc strong {
    color: white;
}

.server-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-label {
    color: #94a3b8;
}

.sort-dropdown {
    background: linear-gradient(135deg, #282828, #3A3A3A);
    border: 2px solid #FF8C00;
    border-radius: 8px;
    color: white;
    padding: 0.75rem 3rem 0.75rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    min-width: 250px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

/* Servers Container */
.servers-container {
    background: #282828;
    border-radius: 12px;
    border: 1px solid #3A3A3A;
    overflow: hidden;
}

.server-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #3A3A3A;
    transition: background 0.2s;
}

.server-row:last-child {
    border-bottom: none;
}

.server-row:hover {
    background: rgba(99, 102, 241, 0.05);
}

.server-row.premium-row {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.08), transparent);
    border-left: 4px solid #FF8C00;
}

.premium-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 700;
    z-index: 2;
}

.server-thumb {
    width: 110px;
    height: 82px;
    position: relative;
}

.server-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.server-info {
    flex: 1;
}

.info-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.server-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.type-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.type-emek { background: #ef4444; }
.type-farm { background: #10b981; }
.type-wslik { background: #FF8C00; }
.type-newschool { background: #00CED1; }
.type-oldschool { background: #800080; }

.server-text {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
}

.info-bottom {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.diff-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.diff-kolay { background: rgba(16, 185, 129, 0.25); color: #10b981; }
.diff-orta { background: rgba(245, 158, 11, 0.25); color: #FFD700; }
.diff-zor { background: rgba(239, 68, 68, 0.25); color: #f87171; }

.status-text,
.stat-text {
    font-size: 0.8125rem;
    color: #94a3b8;
}

.server-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-action {
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    min-width: 90px;
    text-align: center;
}

.btn-view {
    background: #3A3A3A;
    color: white;
}

.btn-vote {
    background: linear-gradient(135deg, #FF8C00, #FF6B00);
    color: white;
}

/* Pagination */
.pagination-box {
    margin-top: 2rem;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.page-link {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: #282828;
    color: white;
    text-decoration: none;
    border: 1px solid #3A3A3A;
}

.page-link:hover,
.page-link.active {
    background: #6366f1;
}

.pagination-info {
    color: #94a3b8;
    font-size: 0.8125rem;
}

/* Stats Section */
.stats-section {
    background: #282828;
    padding: 3rem 0;
    border-top: 1px solid #3A3A3A;
}

.stats-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin: 0 0 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: #1A1A1A;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #3A3A3A;
}

.stat-icon {
    font-size: 2.5rem;
    color: #6366f1;
    margin-bottom: 1rem;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-name {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Ad Slots */
.top-ads-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-ad {
    display: none;
    margin-bottom: 2rem;
}

.ad-slot,
.ad-placeholder {
    background: #282828;
    border-radius: 8px;
    border: 1px solid #3A3A3A;
    overflow: hidden;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-slot img,
.ad-slot a {
    width: 100%;
    display: block;
}

.ad-placeholder {
    text-align: center;
    padding: 1rem;
}

.placeholder-content {
    color: #94a3b8;
}

.placeholder-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #6366f1;
}

.placeholder-content p {
    margin: 0.25rem 0;
    font-size: 0.875rem;
}

.placeholder-size {
    color: #64748b;
    font-size: 0.75rem;
}

.placeholder-link a {
    color: #6366f1;
    text-decoration: underline;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Responsive */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu-new {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(255, 140, 0, 0.1);
    }
    
    .nav-menu-new.active {
        left: 0;
    }
    
    .nav-menu-new li {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .nav-menu-new .nav-item {
        width: 100%;
        padding: 1rem;
        border-radius: 8px;
        background: rgba(40, 40, 40, 0.6);
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1rem;
        border: 1px solid rgba(58, 58, 58, 0.3);
    }
    
    .nav-menu-new .nav-item i {
        font-size: 1.5rem;
    }
    
    /* Mobilde Reklam Ver butonu için özel stil */
    .nav-menu-new .nav-item-highlight {
        background: linear-gradient(135deg, #FF8C00, #FFA500) !important;
        border: 1px solid rgba(255, 140, 0, 0.5);
    }
    
    .brand-logo-img {
        max-height: 40px;
    }
}

@media (max-width: 768px) {
    .top-ads-row {
        display: none;
    }
    
    .mobile-ad {
        display: block;
    }
    
    .brand-logo-img {
        max-height: 35px;
    }
    
    .page-layout { grid-template-columns: 1fr; }
    .left-sidebar { position: static; }
    .server-header-box { flex-direction: column; align-items: flex-start; }
    .sort-dropdown { width: 100%; min-width: 100%; }
    .server-row { flex-direction: column; align-items: flex-start; }
    .server-actions { width: 100%; }
    .btn-action { flex: 1; }
    .stats-grid { grid-template-columns: 1fr; }
    .trend-card { min-width: 100%; }
}

/* ============================================
   ?? Reklam Ver Button Highlight
   ============================================ */

.nav-item-highlight {
    background: linear-gradient(135deg, #513615, #FFA500) !important;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.nav-item-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

.nav-item-highlight i,
.nav-item-highlight span {
    color: white !important;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.nav-item-highlight:hover {
    background: linear-gradient(135deg, #FFA500, #FFB533) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

.nav-item-highlight:hover i,
.nav-item-highlight:hover span {
    color: white !important;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 140, 0, 0.8);
    }
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

