/*
Theme Name: Dijifix PVP Serverler
Theme URI: https://dijifix.com
Author: Dijifix
Author URI: https://dijifix.com
Description: MMORPG PVP Server listesi teması
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dijifix-pvp
*/

:root {
    --primary-color: #ffc107;
    --secondary-color: #212529;
    --dark-bg: #1a1d21;
    --card-bg: #2b2f35;
    --text-color: #ffffff;
    --text-secondary: #adb5bd;
    --border-color: #343a40;
    --hover-color: #dbaf29;
    --accent-blue: #17a2b8;
    --accent-green: #28a745;
    --accent-red: #dc3545;
    --error-color: #dc3545;
    --success-color: #28a745;
    --link-color: #ffca2c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
    }
}

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

a:hover {
    color: var(--primary-color);
}

.main-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    min-height: 100vh;
}

.left-sidebar,
.right-sidebar {
    width: 200px;
    background: #141618;
    position: fixed;
    height: 100vh;
    z-index: 1;
    padding: 20px 0;
    display: block !important;
}

.left-sidebar {
    left: 0;
}

.right-sidebar {
    right: 0;
}

.sidebar-ad {
    width: 160px;
    height: 600px;
    margin: 20px auto;
    background: #0f1113;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.content-wrapper {
    flex: 1;
    width: calc(100% - 400px);
    margin: 0 200px;
    background-color: var(--secondary-color);
    min-height: 100vh;
    max-width: none;
}

/* Header and Navigation */
.header {
    background-color: var(--secondary-color);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 260px at 15% 10%, rgba(255, 193, 7, 0.18), transparent 60%),
        radial-gradient(800px 240px at 85% 0%, rgba(23, 162, 184, 0.16), transparent 60%),
        linear-gradient(180deg, rgba(10, 12, 15, 0.92), rgba(33, 37, 41, 0.92));
    pointer-events: none;
    z-index: 0;
}

.header::after {
    content: "";
    position: absolute;
    inset: -40px;
    background:
        radial-gradient(600px 240px at 25% 40%, rgba(255, 193, 7, 0.18), transparent 65%),
        radial-gradient(520px 220px at 70% 35%, rgba(220, 53, 69, 0.12), transparent 70%);
    filter: blur(10px);
    opacity: 0.85;
    transform: translate3d(0, 0, 0);
    animation: headerGlowMove 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes headerGlowMove {
    0% {
        transform: translate3d(-10px, -6px, 0) scale(1);
        opacity: 0.72;
    }
    50% {
        transform: translate3d(10px, 8px, 0) scale(1.03);
        opacity: 0.95;
    }
    100% {
        transform: translate3d(-10px, -6px, 0) scale(1);
        opacity: 0.72;
    }
}

@media (prefers-reduced-motion: reduce) {
    .header::after {
        animation: none;
    }
}

.header-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.logo,
.logo-text {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.logo,
.logo-text {
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.55),
        0 0 18px rgba(255, 193, 7, 0.22);
}

.logo img {
    max-height: 60px;
    width: auto;
    height: auto;
}

.custom-logo {
    max-height: 60px;
    width: auto;
    height: auto;
}

.search-box {
    flex: 1;
    max-width: 450px;
    position: relative;
}

.search-input {
    padding: 10px 40px 10px 18px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    background: var(--card-bg);
    color: var(--text-color);
    width: 100%;
    font-size: 15px;
}

.search-button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

.user-actions {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 24px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

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

/* Admin Navigation (Gray Bar) */
.navigation {
    background: #343a40;
    border-bottom: 1px solid #454d55;
    position: relative;
    z-index: 1;
}

.nav-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 15px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.nav-links .current-menu-item a,
.nav-links .current_page_item a {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
}

/* Game Tabs (Yellow Bar) */
.game-tabs {
    background: var(--primary-color);
    display: flex;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
}

.game-tab {
    padding: 12px 25px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 15px;
}

.game-tab:hover {
    background: rgba(0, 0, 0, 0.1);
}

.game-tab.active {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.main-content {
    width: 100%;
    max-width: 100%;
    padding: 30px 20px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .header-content {
        padding: 14px 14px !important;
        gap: 12px !important;
    }

    .header-left {
        gap: 14px !important;
    }

    .search-input {
        padding: 10px 40px 10px 14px !important;
        border-radius: 14px !important;
    }

    .user-actions {
        gap: 10px !important;
        flex-wrap: wrap !important;
        justify-content: flex-end !important;
    }

    .btn {
        padding: 9px 14px !important;
        border-radius: 10px !important;
    }

    .main-content {
        padding: 20px 14px !important;
    }

    .server-filters {
        padding: 12px !important;
        gap: 12px !important;
        margin-bottom: 14px !important;
        border-radius: 12px !important;
    }

    .filter-group {
        gap: 8px !important;
        margin-bottom: 8px !important;
    }

    .filter-dropdown {
        padding: 11px 12px !important;
        border-radius: 10px !important;
    }

    .filter-btn {
        padding: 10px 12px !important;
        border-radius: 10px !important;
        font-weight: 700 !important;
    }

    .server-card-mobile {
        border-radius: 16px !important;
        padding: 14px !important;
        margin-bottom: 14px !important;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .server-card-banner {
        border-radius: 14px !important;
        margin-bottom: 12px !important;
    }

    .server-card-header {
        gap: 12px !important;
    }

    .server-icon-mobile {
        width: 46px !important;
        height: 46px !important;
        border-radius: 12px !important;
        font-size: 19px !important;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    }

    .server-name-mobile h3 {
        font-size: 17px !important;
        line-height: 1.2 !important;
    }

    .server-name-mobile small {
        font-size: 12.5px !important;
        line-height: 1.35 !important;
    }

    .server-card-details {
        gap: 8px !important;
        margin-top: 12px !important;
    }
}

/* Tam genişlik tablo için */
.server-table {
    width: 100%;
    max-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.banner-ad {
    width: 100%;
    max-width: 100%;
    height: 90px;
    margin: 0 0 30px 0;
    background: #0f1113;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.server-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: var(--card-bg);
    padding: 15px 20px;
    border-radius: 8px;
    width: 100%;
}

.filter-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.filter-dropdown {
    padding: 8px 15px;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-color);
    font-size: 14px;
    cursor: pointer;
    max-width: 100%;
    width: 100%;
    min-width: 0;
}

.filter-dropdown option {
    padding: 10px;
    background: var(--secondary-color);
    color: var(--text-color);
    font-size: 14px;
    white-space: normal;
}

.filter-dropdown:focus {
    outline: none;
    border-color: var(--primary-color);
}

.filter-btn {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    background: var(--secondary-color);
    color: var(--text-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.filter-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.date-filter-btn {
    margin-left: 10px;
}

/* Server Table - ESKİ HALİ KORUNMUŞTUR */
.server-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.server-table thead {
    background: var(--primary-color);
}

.server-table th {
    padding: 12px 15px;
    text-align: left;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
}

.server-table td {
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.server-table tbody tr:hover {
    background: rgba(255, 193, 7, 0.1);
}

.server-table tbody tr:last-child td {
    border-bottom: none;
}

.server-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: white;
    text-align: center;
    line-height: 32px;
    flex-shrink: 0;
}

.server-name-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.server-name-cell a {
    font-size: 14px;
    font-weight: 500;
}

.server-type {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.orta-server {
    background: var(--accent-blue);
    color: white;
}

.wslik-server {
    background: #f39c12;
    color: white;
}

.kolay-server {
    background: var(--accent-green);
    color: white;
}

.zor-server {
    background: var(--accent-red);
    color: white;
}

.vote-count {
    color: var(--primary-color);
    font-weight: 600;
}

.server-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.status-active {
    background: var(--accent-green);
    color: white;
}

.status-inactive {
    background: var(--accent-red);
    color: white;
}

.status-soon {
    background: var(--accent-blue);
    color: white;
}

.widgets {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.widget {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.widget-title {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.widget-table {
    width: 100%;
    border-collapse: collapse;
}

.widget-table td {
    padding: 8px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.widget-table tr:last-child td {
    border-bottom: none;
}

/* Ana menuyu sari sutuna tasi */
.navigation {
    background: var(--primary-color) !important;
    border-bottom: none !important;
    position: relative;
}

.navigation .nav-links a {
    color: var(--secondary-color) !important;
    font-weight: 600 !important;
}

.navigation .nav-links a:hover {
    background: rgba(0, 0, 0, 0.08) !important;
    color: #111 !important;
}

.navigation .nav-links .current-menu-item a,
.navigation .nav-links .current_page_item a {
    background: rgba(0, 0, 0, 0.14) !important;
    color: #111 !important;
}

/* Oyun sekmelerini koyu tutarak ana menuyu ayristir */
.game-tabs {
    background: #2f343a !important;
}

.game-tab {
    color: #f3f4f6 !important;
}

.game-tab:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

.game-tab.active {
    background: var(--primary-color) !important;
    color: #1a1d21 !important;
}

/* Header menuleri modernlestir (sari alt bar gorunmesin) */
.navigation {
    background: #242a31 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.navigation .nav-content {
    padding: 8px 16px !important;
}

.navigation .nav-links {
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.navigation .nav-links li {
    margin: 0 !important;
}

.navigation .nav-links a {
    color: #eef2f6 !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    line-height: 1.1 !important;
    transition: all 0.2s ease !important;
}

.navigation .nav-links a:hover {
    color: #111 !important;
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-1px);
}

.navigation .nav-links .current-menu-item a,
.navigation .nav-links .current_page_item a {
    color: #111 !important;
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 6px 14px rgba(255, 193, 7, 0.25);
}

/* Alttaki oyun satiri saridan cikar, modern koyu tut */
.game-tabs {
    background: #1f242b !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.game-tab {
    color: #d8dde3 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.game-tab:hover {
    color: #111 !important;
    background: var(--primary-color) !important;
}

.game-tab.active {
    color: #111 !important;
    background: var(--primary-color) !important;
}

/* Menu tasmasini engelle, daha kompakt yap */
.navigation .nav-content {
    padding: 6px 10px !important;
    overflow-x: auto;
    overflow-y: hidden;
}

.navigation .nav-links {
    flex-wrap: nowrap !important;
    gap: 6px !important;
    white-space: nowrap;
    width: max-content;
    min-width: 100%;
}

.navigation .nav-links a {
    font-size: 13px !important;
    padding: 8px 10px !important;
    border-radius: 8px !important;
}

.game-tabs {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
}

.game-tab {
    display: inline-block !important;
    font-size: 13px !important;
    padding: 10px 12px !important;
}

/* Mobilde navbari tekrar goster */
@media (max-width: 768px) {
    .navigation {
        display: block !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .navigation .nav-content {
        padding: 8px 10px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
    }

    .navigation .nav-links {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 6px !important;
        white-space: nowrap !important;
        width: max-content;
        min-width: 100%;
    }

    .navigation .nav-links a {
        font-size: 12px !important;
        padding: 8px 10px !important;
        border-radius: 8px !important;
        white-space: nowrap !important;
    }
}

/* Ana menu arka plani: komple sari cizgi */
.navigation {
    background: var(--primary-color) !important;
    border-bottom: none !important;
}

.navigation .nav-content {
    background: transparent !important;
}

.navigation .nav-links a {
    color: #1a1d21 !important;
    background: rgba(255, 255, 255, 0.35) !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
}

.navigation .nav-links a:hover,
.navigation .nav-links .current-menu-item a,
.navigation .nav-links .current_page_item a {
    color: #fff !important;
    background: #1f2630 !important;
    border-color: #1f2630 !important;
}

/* Mobil hamburger menu */
.mobile-nav-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.35);
    color: #1a1d21;
    font-weight: 700;
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
}

.mobile-nav-toggle-icon {
    width: 14px;
    height: 2px;
    background: currentColor;
    position: relative;
    display: inline-block;
}

.mobile-nav-toggle-icon::before,
.mobile-nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 14px;
    height: 2px;
    background: currentColor;
}

.mobile-nav-toggle-icon::before {
    top: -5px;
}

.mobile-nav-toggle-icon::after {
    top: 5px;
}

@media (max-width: 768px) {
    .navigation .nav-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        overflow: visible !important;
    }

    .mobile-nav-toggle {
        display: inline-flex !important;
    }

    .navigation .nav-links {
        display: none !important;
        position: absolute;
        left: 10px;
        right: 10px;
        top: calc(100% + 8px);
        z-index: 50;
        flex-direction: column;
        gap: 6px !important;
        min-width: 0 !important;
        width: auto !important;
        white-space: normal !important;
        background: #1f2630;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    }

    .navigation.is-open .nav-links {
        display: flex !important;
    }

    .navigation:focus-within .nav-links {
        display: flex !important;
    }

    .navigation .nav-links a {
        width: 100%;
        font-size: 13px !important;
        padding: 10px 12px !important;
        border-radius: 8px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        color: #f2f5f8 !important;
    }

    .navigation .nav-links a:hover,
    .navigation .nav-links .current-menu-item a,
    .navigation .nav-links .current_page_item a {
        background: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        color: #1a1d21 !important;
    }
}

/* Modern ana menu bar (final) */
.navigation {
    background: linear-gradient(180deg, #ffd54a 0%, #ffc107 100%) !important;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.12), 0 6px 14px rgba(0, 0, 0, 0.12);
}

.navigation .nav-content {
    padding: 8px 12px !important;
}

.navigation .nav-links {
    gap: 7px !important;
}

.navigation .nav-links a {
    background: rgba(20, 24, 30, 0.88) !important;
    color: #f7f9fb !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
}

.navigation .nav-links a:hover,
.navigation .nav-links .current-menu-item a,
.navigation .nav-links .current_page_item a {
    background: #ffffff !important;
    color: #1a1d21 !important;
    border-color: rgba(255, 255, 255, 0.95) !important;
    transform: translateY(-1px);
}

/* Navbar buyuk + modern + ayirici (final) */
.navigation {
    background: var(--primary-color) !important;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.12) !important;
}

.navigation .nav-content {
    padding: 12px 18px !important;
}

.navigation .nav-links {
    gap: 0 !important;
    align-items: center;
}

.navigation .nav-links li {
    position: relative;
    margin: 0 !important;
}

.navigation .nav-links li + li::before {
    content: "|" !important;
    color: rgba(20, 24, 30, 0.55);
    font-weight: 700;
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.navigation .nav-links a {
    background: transparent !important; /* baloncuk iptal */
    border: none !important;            /* baloncuk iptal */
    box-shadow: none !important;        /* baloncuk iptal */
    border-radius: 0 !important;
    color: #1a1d21 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    padding: 10px 16px !important;
}

.navigation .nav-links a:hover,
.navigation .nav-links .current-menu-item a,
.navigation .nav-links .current_page_item a {
    background: transparent !important;
    color: #ffffff !important;
    transform: none !important;
}

@media (max-width: 768px) {
    .navigation .nav-content {
        padding: 10px 12px !important;
    }

    .navigation .nav-links li + li::before {
        content: none !important;
    }
}

/* Navbar modern dark (final final) */
.navigation {
    background: linear-gradient(180deg, #1f2329 0%, #171b20 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28) !important;
}

.navigation .nav-content {
    padding: 0 14px !important;
}

.navigation .nav-links {
    display: flex;
    align-items: stretch;
    gap: 0 !important;
}

.navigation .nav-links li {
    margin: 0 !important;
    position: relative;
}

.navigation .nav-links li + li {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.navigation .nav-links li + li::before {
    content: none !important;
}

.navigation .nav-links a {
    font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.15px;
    color: #e8edf3 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 12px 16px !important;
    display: flex;
    align-items: center;
    min-height: 44px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.navigation .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    transform: none !important;
}

.navigation .nav-links .current-menu-item a,
.navigation .nav-links .current_page_item a {
    background: #ffffff !important;
    color: #14181d !important;
}

/* Sariyi birak: alt game bar da koyu */
.game-tabs {
    background: #12161b !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.game-tab {
    color: #cfd6de !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px !important;
    font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif !important;
}

.game-tab:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
}

.game-tab.active {
    background: #ffffff !important;
    color: #11161b !important;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        background: #2b3139 !important;
        color: #f1f5f9 !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
    }
}

/* Ara cozumurluk duzeltmesi: tablo tasmasini engelle */
@media (max-width: 1450px) and (min-width: 769px) {
    .left-sidebar,
    .right-sidebar {
        display: none !important;
    }

    .content-wrapper {
        margin: 0 !important;
        width: 100% !important;
    }

    .main-content .server-table {
        display: none !important;
    }

    .main-content .server-list-mobile {
        display: block !important;
    }
}

/* Blog yazı içerik tipografisi (editör görünümüne yakın) */
.single-post .article-content {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #e7ebf0 !important;
}

.single-post .article-content p {
    margin: 0 0 16px 0 !important;
}

.single-post .article-content h2 {
    margin: 28px 0 14px 0 !important;
    font-size: 30px !important;
    line-height: 1.3 !important;
    color: var(--primary-color) !important;
}

.single-post .article-content h3 {
    margin: 20px 0 10px 0 !important;
    font-size: 24px !important;
    line-height: 1.35 !important;
    color: #f3f6fa !important;
}

.single-post .article-content ul,
.single-post .article-content ol {
    margin: 0 0 18px 22px !important;
    padding: 0 !important;
}

.single-post .article-content li {
    margin-bottom: 8px !important;
}

/* Server table modern override (final) */
.server-table {
    border-collapse: separate !important;
    border-spacing: 0 10px !important;
    background: transparent !important;
    box-shadow: none !important;
}

.server-table thead th {
    position: static !important;
    border-radius: 0 !important;
}

.server-table tbody tr {
    background: #252b38 !important;
}

.server-table tbody td {
    border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    vertical-align: middle !important;
}

.server-table tbody td:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-top-left-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
}

.server-table tbody td:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.server-table tbody tr:hover {
    background: #2a3141 !important;
    transform: translateY(-1px);
}

.server-name-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #f2f5f8 !important;
}

.server-name-subtitle {
    color: #9aa5b1 !important;
}

.server-list-banner-link {
    width: 420px !important;
    max-width: 100% !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #111 !important;
}

.server-list-banner-image {
    width: 100% !important;
    aspect-ratio: 8 / 3 !important;
    object-fit: contain !important;
    display: block !important;
}

.server-list-banner-fallback {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    aspect-ratio: 8 / 3 !important;
    padding: 12px !important;
    background: linear-gradient(135deg, #22345e 0%, #2f1f4f 55%, #40361a 100%) !important;
}

.server-list-banner-fallback-title {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    text-align: center !important;
    line-height: 1.25 !important;
}

.server-table th:nth-child(3),
.server-table th:nth-child(4),
.server-table td:nth-child(3),
.server-table td:nth-child(4) {
    white-space: nowrap !important;
    min-width: 90px;
    text-align: center;
}

/* Efsunlar section */
.efsun-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.efsun-card {
    background: linear-gradient(160deg, rgba(255, 193, 7, 0.08), rgba(255, 193, 7, 0.02) 35%, rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 193, 7, 0.18);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.efsun-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.16);
    color: var(--primary-color);
    border: 1px solid rgba(255, 193, 7, 0.35);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.efsun-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.3;
}

.efsun-focus {
    color: #ffe08a;
    font-weight: 600;
    margin-bottom: 8px;
}

.efsun-excerpt {
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.efsun-readmore {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
}

.efsun-single-page .efsun-hero {
    background: linear-gradient(120deg, rgba(255, 193, 7, 0.24), rgba(255, 193, 7, 0.08));
    border: 1px solid rgba(255, 193, 7, 0.35);
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 18px;
}

.efsun-hero h1 {
    margin: 6px 0 10px;
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.efsun-hero p {
    margin: 0;
    color: #f3f5f7;
    font-weight: 500;
}

.card-like {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 18px;
}

.efsun-quick-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: sticky;
    top: 12px;
    z-index: 8;
    backdrop-filter: blur(6px);
}

.efsun-quick-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 193, 7, 0.28);
    background: rgba(255, 193, 7, 0.08);
    color: #ffe08a;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.efsun-quick-chip:hover {
    background: rgba(255, 193, 7, 0.18);
    transform: translateY(-1px);
}

.efsun-sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 16px;
}

.efsun-section-card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 16px 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.efsun-section-card h2 {
    margin: 0 0 12px;
    color: var(--primary-color);
    font-size: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.efsun-section-card ul,
.efsun-notes ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.efsun-section-card li,
.efsun-notes li {
    margin-bottom: 10px;
}

.efsun-item {
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    line-height: 1.45;
}

.efsun-item-split {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 8px;
}

.efsun-item-key {
    color: #ffd86b;
    font-weight: 700;
}

.efsun-item-value {
    color: #e8edf3;
}

.efsun-notes {
    margin-top: 18px;
}

.efsun-notes li {
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 900px) {
    .efsun-sections-grid {
        grid-template-columns: 1fr;
    }
    .efsun-item-split {
        grid-template-columns: 1fr;
    }
    .efsun-item-key {
        margin-bottom: 3px;
    }
    .efsun-hero h1 {
        font-size: 28px;
    }
}

.widget-table td:last-child {
    text-align: right;
    color: var(--primary-color);
    font-weight: 600;
}

.blog-section {
    margin-top: 50px;
}

.section-title {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 14px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--hover-color);
}

.footer {
    background: var(--secondary-color);
    border-top: 3px solid var(--primary-color);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--primary-color);
}

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

/* Sayfa İçeriği */
.entry-content {
    padding: 20px 0;
    color: var(--text-color);
}

/* Mobil uyumluluk */
@media (max-width: 1200px) {

    .left-sidebar,
    .right-sidebar {
        display: none !important;
    }

    .content-wrapper {
        margin: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .main-container {
        display: block;
        width: 100%;
        min-height: 100vh;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    .content-wrapper {
        width: 100%;
        margin: 0;
        padding: 0;
        max-width: 100%;
        overflow-x: hidden;
    }

    .main-content {
        width: 100%;
        margin: 20px 0;
        padding: 0 15px;
        box-sizing: border-box;
        max-width: 100%;
    }

    .header {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .header-left {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .logo,
    .logo-text {
        font-size: 24px;
        text-align: center;
    }

    .search-box {
        width: 100%;
        max-width: none;
    }

    .user-section {
        width: 100%;
    }

    .user-actions {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .navigation {
        display: none;
    }

    .game-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 5px;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }

    .game-tab {
        padding: 8px 12px;
        font-size: 14px;
        margin: 3px;
        display: inline-block;
    }

    /* Server Tablosu - Mobilde gizle */
    .server-table {
        display: none !important;
    }

    /* Mobil Server Listesi - Göster */
    .server-list-mobile {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .server-card-mobile {
        background: var(--card-bg);
        border-radius: 12px;
        margin-bottom: 15px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        width: 100%;
        box-sizing: border-box;
    }

    .server-card-header {
        display: flex;
        gap: 15px;
        margin-bottom: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .server-icon-mobile {
        width: 50px;
        height: 50px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: bold;
        color: white;
    }

    .server-name-mobile h3 {
        font-size: 18px;
        margin: 0;
    }

    .server-name-mobile h3 a {
        color: var(--text-color);
        text-decoration: none;
    }

    .server-name-mobile small {
        color: var(--text-secondary);
        font-size: 13px;
        margin-top: 5px;
        display: block;
    }

    .server-card-details {
        display: flex;
        gap: 10px;
        align-items: center;
        margin-top: 10px;
    }

    .server-filters {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .filter-group {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-bottom: 10px;
    }

    .filter-dropdown {
        width: 100%;
        max-width: 100%;
        padding: 10px 35px 10px 15px;
        font-size: 14px;
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        box-sizing: border-box;
        margin-bottom: 5px;
    }

    .filter-btn {
        flex: 1;
        min-width: 120px;
        padding: 10px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 5px;
    }

    .widgets {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        box-sizing: border-box;
        padding: 0 10px;
    }

    .widget {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .blog-card {
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Server detay sayfası mobil düzenleme */
    .server-details {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .server-info {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .server-header {
        width: 100%;
        box-sizing: border-box;
        padding: 20px;
        margin: 0 0 20px 0;
    }

    .server-header h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .server-description {
        width: 100%;
        box-sizing: border-box;
        padding: 20px;
    }

    /* Masaüstü vote widget'ı mobilde gizle */
    .vote-widget-desktop {
        display: none !important;
    }

    /* Mobil vote widget'ı göster */
    .vote-widget-mobile {
        display: flex;
        margin-bottom: 20px;
        align-items: center;
        gap: 10px;
        background: var(--card-bg);
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border-color);
        width: 100%;
        box-sizing: border-box;
    }

    .vote-widget-mobile .vote-count {
        font-size: 24px;
        font-weight: bold;
        color: var(--primary-color);
        margin: 0;
    }

    .vote-widget-mobile .vote-label {
        font-size: 14px;
        color: var(--text-secondary);
        margin: 0;
        flex: 1;
    }

    /* Mobil oy ver butonu */
    .vote-button-mobile {
        display: block;
        margin: 20px 0;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .vote-button-mobile .vote-btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 18px;
        background: var(--primary-color);
        color: var(--secondary-color);
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 700;
        box-sizing: border-box;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

    /* Oy sayısı font boyutu küçültüldü */
    .vote-count {
        font-size: 20px !important;
        font-weight: 600;
    }

    /* Mobil listelerde oy sayısı */
    .server-card-details .vote-count {
        font-size: 16px !important;
        font-weight: 600;
    }

    /* Form sayfaları */
    .form-container {
        padding: 20px;
        margin: 20px 10px;
        width: auto;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Blog sayfası */
    .article-content {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

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

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

    /* Yorumlar */
    .comment-body {
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .comment-author img {
        width: 40px;
        height: 40px;
    }

    .children {
        margin-left: 20px;
    }

    /* Öne çıkan görsel */
    .featured-image {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: contain;
    }

    /* Single post için öne çıkan görsel */
    .single .featured-image {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    /* Featured image container */
    .featured-image-container {
        width: 100%;
        margin-bottom: 20px;
        overflow: visible;
    }

    .featured-image-container img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Banner reklamlar */
    .banner-ad {
        width: 100%;
        height: auto;
        min-height: 100px;
        padding: 15px;
        margin: 20px 0;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    /* Pagination */
    .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        padding: 20px 0;
        width: 100%;
        box-sizing: border-box;
    }

    .pagination .page-numbers {
        padding: 6px 12px;
        font-size: 14px;
    }
}

/* Masaüstünde mobil widget listesini gizle */
.server-list-mobile {
    display: none;
}

/* Mobil Server Widget Stilleri */
.server-card-mobile {
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.server-card-header {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.server-icon-mobile {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.server-name-mobile {
    flex: 1;
}

.server-name-mobile h3 {
    font-size: 18px;
    margin: 0;
}

.server-name-mobile h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.server-name-mobile h3 a:hover {
    color: var(--primary-color);
}

.server-name-mobile small {
    color: var(--text-secondary);
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.server-card-details {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

.server-card-details .server-type {
    margin: 0;
}

.server-card-details .server-status {
    margin: 0;
}

.server-card-details .vote-count {
    margin-left: auto;
}

/* Mobil görünüm toggle butonu masaüstünde gizle */
.mobile-view-toggle {
    display: none;
}

/* Footer menü stilleri */
.footer-links.menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

/* Taxonomy ve arşiv sayfaları için stil */
.archive-header {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.archive-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.archive-description {
    font-size: 16px;
}

/* Sayfa stilleri */
.article-header {
    margin-bottom: 30px;
}

.article-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.article-content {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Login ve Register sayfaları */
.form-container {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    margin: 50px auto;

    /* Varsayılan olarak görünür olsun */
    opacity: 1;
    visibility: visible;
}

/* Server Ekle sayfası için özel stil */
.server-add-form {
    max-width: 100%;
}

.server-add-form .form-group {
    margin-bottom: 25px;
}

.server-add-form .wp-editor-container {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.form-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group input[type="url"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    background: var(--secondary-color);
    color: var(--text-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.form-group.checkbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-group.checkbox .remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 14px;
}

.form-group.checkbox a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
}

.form-group.checkbox a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
}

.form-footer {
    text-align: center;
    margin-top: 25px;
    color: var(--text-secondary);
    font-size: 14px;
}

.form-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

.error-message,
.success-message {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

.success-message {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.password-strength {
    height: 5px;
    margin-top: 8px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.password-strength.weak {
    background: var(--error-color);
    width: 33%;
}

.password-strength.medium {
    background: #ffc107;
    width: 66%;
}

.password-strength.strong {
    background: var(--success-color);
    width: 100%;
}

.password-requirements {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Server Detay Sayfası */
.server-header {
    background: linear-gradient(135deg, var(--primary-color), #e6ac00);
    color: var(--secondary-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.server-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.server-header p {
    font-size: 18px;
    opacity: 0.9;
}

.server-details {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 25px;
}

.server-info {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Mobil oy widget'ı varsayılan olarak gizli */
.vote-widget-mobile {
    display: none;
}

/* Mobil oy ver butonu varsayılan olarak gizli */
.vote-button-mobile {
    display: none;
}

/* Masaüstü vote widget */
.vote-widget-desktop {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.info-label {
    width: 150px;
    color: var(--primary-color);
    font-weight: 600;
}

.info-value {
    flex: 1;
}

.info-value .server-type {
    display: inline-block;
    margin: 0;
    float: none;
}

.info-value a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-value a:hover {
    text-decoration: underline;
}

.vote-widget {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.vote-count {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.vote-label {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 20px;
}

.vote-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.vote-btn:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.server-description {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.description-title {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.server-description p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.server-description ul {
    margin-left: 25px;
    margin-top: 10px;
}

.server-description li {
    margin-bottom: 8px;
}

.similar-servers {
    margin-top: 50px;
}

.similar-servers h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.server-list {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.server-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.server-item:hover {
    background: rgba(255, 193, 7, 0.1);
}

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

.server-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    color: white;
    font-size: 18px;
}

.server-name {
    flex: 1;
}

.server-name strong {
    display: block;
    margin-bottom: 4px;
}

.server-name strong a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.server-name strong a:hover {
    color: var(--primary-color);
}

.server-name small {
    color: var(--text-secondary);
    font-size: 14px;
}

.server-type {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin-right: 15px;
    font-weight: 600;
}

.server-votes {
    color: var(--primary-color);
    font-weight: 600;
}

/* 404 Page */
.error-404 {
    text-align: center;
    padding: 60px 20px;
}

.error-title {
    font-size: 120px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1;
}

.error-404 h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.error-404 p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.error-actions {
    margin-bottom: 40px;
}

.search-form-container {
    max-width: 500px;
    margin: 0 auto;
}

/* Search Results */
.search-header {
    margin-bottom: 30px;
}

.search-title {
    font-size: 28px;
    color: var(--primary-color);
}

.search-title span {
    font-weight: bold;
}

/* Comments Section */
.comments-section {
    margin-top: 50px;
}

.comments-section h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 25px;
}

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

.comment-list ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    margin-bottom: 30px;
}

.comment-body {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.comment-author img {
    border-radius: 50%;
    margin-right: 15px;
}

.comment-author .fn {
    font-weight: bold;
    color: var(--primary-color);
    font-style: normal;
}

.comment-meta {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.comment-meta a {
    color: var(--text-secondary);
    text-decoration: none;
}

.comment-content {
    color: var(--text-color);
    line-height: 1.6;
}

.reply {
    margin-top: 15px;
}

.reply a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    padding: 5px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.reply a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.children {
    list-style: none;
    margin-left: 40px;
    margin-top: 20px;
}

.children .comment {
    margin-bottom: 20px;
}

/* Comment Form */
.comment-respond {
    margin-top: 40px;
}

.comment-reply-title {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.comment-form {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comment-form p {
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--secondary-color);
    color: var(--text-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

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

.comment-form .submit {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form .submit:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
}

/* Comment Notes */
.comment-notes {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.required {
    color: var(--accent-red);
}

/* Comment Form Cookies Consent */
.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-form-cookies-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.comment-form-cookies-consent label {
    margin: 0;
    font-size: 14px;
}

/* Numbered comments - remove */
.commentlist {
    list-style: none !important;
    counter-reset: none !important;
}

.commentlist li {
    list-style: none !important;
}

.commentlist li:before {
    content: none !important;
}

.comment-body {
    position: relative;
}

/* Logged in as */
.logged-in-as {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.logged-in-as a {
    color: var(--primary-color);
    text-decoration: none;
}

.logged-in-as a:hover {
    text-decoration: underline;
}

/* Comment awaiting moderation */
.comment-awaiting-moderation {
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-color);
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
    font-style: italic;
}

/* Pagination */
.pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

/* Author Box */
.author-box {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    margin-top: 40px;
    display: flex;
    gap: 25px;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.author-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.author-info h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 10px;
}

.author-bio {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Related Posts */
.related-posts {
    margin-top: 50px;
}

.related-posts h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 25px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card-content {
    padding: 15px;
}

.related-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.related-card h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-card h3 a:hover {
    color: var(--primary-color);
}

.related-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Masaüstünde mobil widget listesini gizle - KILAVUZUN EN SONUNDA OLMALI */
.server-list-mobile {
    display: none;
}

/* WordPress Görsel Özellikleri */
.featured-image-container {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
}

.single .featured-image-container {
    max-width: 100%;
    overflow: visible;
}

.single .featured-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 600px;
}

/* Blog thumbnail */
.blog-thumbnail {
    overflow: hidden;
    width: 100%;
    height: 200px;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Form gereksinimleri */
.form-help {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 40px 20px;
    background: var(--card-bg);
    border-radius: 8px;
    margin: 20px 0;
}

.no-results h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.no-results p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Server Ekle Formu */
.server-add-form select,
.server-add-form input[type="file"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    background: var(--secondary-color);
    color: var(--text-color);
    border-radius: 8px;
    font-size: 16px;
}

/* WordPress Core */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
}

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.sticky {
    display: block;
}

.bypostauthor {
    display: block;
}

/* Clearfix */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Print styles */
@media print {

    .left-sidebar,
    .right-sidebar,
    .header,
    .footer,
    .navigation,
    .game-tabs,
    .server-filters,
    .vote-widget,
    .comment-respond,
    .sidebar-ad,
    .banner-ad {
        display: none !important;
    }

    .main-container {
        width: 100%;
        margin: 0;
    }

    .content-wrapper {
        margin: 0;
        width: 100%;
    }

    body {
        background: #fff;
        color: #000;
    }

    a {
        text-decoration: underline;
    }

    .server-table {
        border: 1px solid #ddd;
    }

    .server-table th,
    .server-table td {
        border: 1px solid #ddd;
        padding: 8px;
    }
}

/* Sayfa Genişliği ve Layout Düzeltmesi */
/* Ana container düzeltmesi */
.main-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    min-height: 100vh;
}

/* Left ve right sidebar düzeltmesi */
.left-sidebar,
.right-sidebar {
    width: 200px;
    background: #141618;
    position: fixed;
    height: 100vh;
    z-index: 1;
    padding: 20px 0;
    display: block !important;
}

.left-sidebar {
    left: 0;
}

.right-sidebar {
    right: 0;
}

/* İçerik alanı düzeltmesi */
.content-wrapper {
    flex: 1;
    width: calc(100% - 400px);
    margin: 0 200px;
    background-color: var(--secondary-color);
    min-height: 100vh;
    max-width: none;
}

/* Server detay sayfası düzeltmesi */
@media (max-width: 768px) {

    /* Server detay sayfası genel düzeltmesi */
    .server-info {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px 0 !important;
        padding: 15px !important;
        box-sizing: border-box !important;
    }

    .server-header {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px 0 !important;
        padding: 15px !important;
        box-sizing: border-box !important;
    }

    .server-description {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px 0 !important;
        padding: 15px !important;
        box-sizing: border-box !important;
    }

    .server-details {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
    }

    .info-row {
        padding: 12px 0 !important;
    }

    .info-label {
        width: 140px !important;
    }

    /* Mobil oy widget'ı daha belirgin */
    .vote-widget-mobile {
        display: flex !important;
        margin: 0 0 20px 0 !important;
        padding: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .vote-widget-mobile .vote-count {
        font-size: 24px !important;
        margin: 0 !important;
    }

    .vote-widget-mobile .vote-label {
        font-size: 14px !important;
        margin: 0 !important;
    }

    /* Mobil oy verme butonu */
    .vote-button-mobile {
        display: block !important;
        margin: 20px 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .vote-button-mobile .vote-btn {
        display: block !important;
        width: 100% !important;
        padding: 15px !important;
        font-size: 18px !important;
        background: var(--primary-color) !important;
        color: var(--secondary-color) !important;
        border: none !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        font-weight: 700 !important;
        text-align: center !important;
    }

    /* Genel mobil görünüm düzeltmeleri */
    .main-content {
        width: 100% !important;
        padding: 15px !important;
        box-sizing: border-box !important;
    }

    /* Yorum alanı düzeltmesi */
    .comments-section {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Benzer serverler düzeltmesi */
    .similar-servers {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Normal haldeki detay sayfası düzeltmesi */
.server-info {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.server-details {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 25px;
    width: 100%;
    box-sizing: border-box;
}

.server-description {
    width: 100%;
    box-sizing: border-box;
}

.vote-widget-desktop {
    width: 100%;
    box-sizing: border-box;
}

.server-header {
    width: 100%;
    box-sizing: border-box;
}

/* Mobil görünümde sidebar'ları gizleme */
@media (max-width: 768px) {

    .left-sidebar,
    .right-sidebar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        visibility: hidden !important;
        position: absolute !important;
        opacity: 0 !important;
        z-index: -999 !important;
        overflow: hidden !important;
    }

    .content-wrapper {
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    body {
        overflow-x: hidden !important;
    }
}

/* Sidebar düzeltmesi */
.left-sidebar,
.right-sidebar {
    transition: all 0.3s ease;
}
/* Server detay sayfası için yeni stil düzenlemeleri */
.server-info-container {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.server-info {
    width: calc(100% - 320px);
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.vote-widget-desktop {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.server-description {
    width: 100%;
    clear: both;
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 768px) {
    .server-info {
        width: 100%;
        margin-bottom: 20px;
    }

    .vote-widget-desktop {
        display: none !important;
    }

    .vote-widget-mobile {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }
}
/* Kullanıcı menüsü stilleri */
.user-menu {
    position: relative;
    cursor: pointer;
}

.user-name {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 20px;
    font-weight: 600;
}

.user-name:after {
    content: "▼";
    font-size: 10px;
    margin-left: 8px;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 200px;
    z-index: 100;
    display: none;
    overflow: hidden;
}

.user-menu:hover .user-dropdown {
    display: block;
}

.user-dropdown a {
    display: block;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-color);
}

.user-dropdown a:last-child {
    border-bottom: none;
}

.user-dropdown a:hover {
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-color);
}
/* Profil Sayfası Stilleri */
.profile-container {
    max-width: 1000px;
    margin: 0 auto 50px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.profile-header {
    background: linear-gradient(135deg, var(--primary-color), #e6ac00);
    color: var(--secondary-color);
    padding: 25px;
    text-align: center;
}

.profile-title {
    font-size: 28px;
    margin: 0;
}

.profile-tabs {
    display: flex;
    background: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
}

.profile-tab {
    padding: 15px 25px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.profile-tab:hover {
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-color);
}

.profile-tab.active {
    color: var(--primary-color);
    font-weight: 600;
}

.profile-tab.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.profile-content {
    padding: 30px;
}

.profile-form .section-title {
    color: var(--primary-color);
    font-size: 20px;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.profile-form .form-info {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 5px 0 15px;
}

.profile-footer {
    background: var(--secondary-color);
    padding: 15px 30px;
    border-top: 1px solid var(--border-color);
}

.profile-footer .additional-links {
    display: flex;
    justify-content: space-between;
}

.back-link,
.admin-link {
    color: var(--text-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.back-link:before {
    content: '←';
}

.admin-link:after {
    content: '→';
}

.back-link:hover,
.admin-link:hover {
    color: var(--primary-color);
}

/* Server Yönetim Tablosu Stilleri */
.servers-section {
    width: 100%;
}

.servers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.add-server-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.add-server-btn:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
}

.user-servers-table {
    width: 100%;
    overflow-x: auto;
}

.user-servers-table table {
    width: 100%;
    border-collapse: collapse;
}

.user-servers-table th,
.user-servers-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.user-servers-table th {
    font-weight: 600;
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-color);
}

.user-servers-table td.actions {
    display: flex;
    gap: 10px;
}

.edit-btn,
.delete-btn {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.edit-btn {
    background: var(--accent-blue);
    color: white;
}

.delete-btn {
    background: var(--accent-red);
    color: white;
}

.edit-btn:hover,
.delete-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.approval-status {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.approval-status.approved {
    background: var(--accent-green);
    color: white;
}

.approval-status.pending {
    background: #f39c12;
    color: white;
}

.no-servers-message {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.no-servers-message p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Server Düzenleme Formu Stilleri */
.server-edit-form {
    max-width: 100%;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cancel-btn {
    background: var(--card-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.cancel-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.current-images {
    margin-top: 15px;
}

.image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.image-preview-item {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Duyarlı Tasarım - Profil Sayfası */
@media (max-width: 768px) {
    .profile-tab {
        padding: 12px 15px;
        font-size: 14px;
    }

    .profile-content {
        padding: 20px 15px;
    }

    .user-servers-table {
        overflow-x: auto;
    }

    .form-actions {
        flex-direction: column;
    }

    .submit-btn,
    .cancel-btn {
        width: 100%;
    }
}
* style.css dosyasının sonuna ekleyin */

/* Server Ekle Formu Genişlik Düzeltmeleri */
.server-add-form {
    max-width: 100%;
    margin: 0 auto;
}

.form-container {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    /* Form genişliğini artır */
    margin: 50px auto;
    width: 100%;
    box-sizing: border-box;
}

/* TinyMCE editör genişliği */
.wp-editor-wrap {
    width: 100%;
    max-width: 100%;
}

.wp-editor-container {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 850px) {
    .form-container {
        max-width: 100%;
        padding: 20px;
        margin: 20px 10px;
    }
}
/* style.css dosyanızın sonuna ekleyin */

/* Tüm Serverleri Görüntüleme Butonu Stilleri */
.view-all-servers {
    margin: 40px 0;
    width: 100%;
}

.view-all-container {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.view-all-container p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.game-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.game-button {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--secondary-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.game-button:hover {
    border-color: var(--primary-color);
    background: rgba(255, 193, 7, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.game-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 6px;
    margin-right: 10px;
    font-weight: bold;
}

.game-name {
    font-weight: 500;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .view-all-container {
        padding: 20px 15px;
    }

    .game-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .game-button {
        width: 100%;
        justify-content: center;
    }
}

/* Improved Button Hover Effects */
.btn,
.vote-btn,
.filter-btn,
.submit-btn,
.add-server-btn,
.game-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

/* Button hover effect with animation */
.btn:hover,
.vote-btn:hover,
.filter-btn:hover,
.submit-btn:hover,
.add-server-btn:hover,
.game-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
}

/* Active state for buttons */
.btn:active,
.vote-btn:active,
.filter-btn:active,
.submit-btn:active,
.add-server-btn:active,
.game-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Ripple effect for buttons */
.btn:after,
.vote-btn:after,
.filter-btn:after,
.submit-btn:after,
.add-server-btn:after,
.game-button:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
    z-index: -1;
}

.btn:hover:after,
.vote-btn:hover:after,
.filter-btn:hover:after,
.submit-btn:hover:after,
.add-server-btn:hover:after,
.game-button:hover:after {
    animation: ripple 0.6s ease-out;
}

/* Ripple animation */
@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    20% {
        transform: scale(25, 25);
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}


/* Öne Çıkan Serverler Başlık Alanı */
.section-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1f25 100%);
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.section-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
}

.section-header h2 {
    padding: 18px 25px;
    margin: 0;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.section-header h2:before {
    content: "🏆";
    margin-right: 10px;
    font-size: 24px;
}

/* Eğer oyun adı varsa */
.section-header h2 .game-title {
    color: #fff;
    font-weight: 400;
    margin-left: 8px;
}

.section-header h2 .game-title:before {
    content: "•";
    margin: 0 8px;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Oyun Sekmeleri Stillerini Geliştirme */
.game-tabs {
    background: var(--primary-color);
    display: flex;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.game-tab {
    padding: 14px 25px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    white-space: nowrap;
}

.game-tab:hover {
    background: rgba(0, 0, 0, 0.1);
}

.game-tab.active {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Alt çizgi efekti */
.game-tab:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.game-tab:hover:after {
    width: 80%;
}

.game-tab.active:after {
    width: 100%;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 16px;
        padding: 15px 20px;
    }

    .section-header h2:before {
        font-size: 20px;
    }

    .game-tab {
        padding: 12px 15px;
        font-size: 14px;
    }
}
/* style.css dosyanıza ekleyin - Kullanıcı Menüsü Stilleri */

/* Üye girişi yapınca header düzenlemeleri */
.user-menu {
    position: relative;
    cursor: pointer;
    margin-left: 12px;
    /* Server Ekle butonu ile arasında boşluk */
}

.user-name {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.user-name:after {
    content: "▼";
    font-size: 10px;
    margin-left: 8px;
}

.user-menu:hover .user-name {
    background: var(--hover-color);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 200px;
    z-index: 100;
    display: none;
    overflow: hidden;
    margin-top: 5px;
}

.user-menu:hover .user-dropdown {
    display: block;
}

.user-dropdown a {
    display: block;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.user-dropdown a:last-child {
    border-bottom: none;
}

.user-dropdown a:hover {
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .user-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .user-menu {
        margin-top: 10px;
        margin-left: 0;
        width: 100%;
    }

    .user-name {
        justify-content: center;
        width: 100%;
    }

    .user-dropdown {
        width: 100%;
    }
}

/* Geliştirilmiş Başlık ve Oyun Sekmeleri Stilleri */

/* Öne Çıkan Serverler Başlık Alanı */
.section-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1f25 100%);
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.section-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
}

.section-header h2 {
    padding: 18px 25px;
    margin: 0;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.section-header h2:before {
    content: "🏆";
    margin-right: 10px;
    font-size: 24px;
}

/* Eğer oyun adı varsa */
.section-header h2 .game-title {
    color: #fff;
    font-weight: 400;
    margin-left: 8px;
}

.section-header h2 .game-title:before {
    content: "•";
    margin: 0 8px;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Oyun Sekmeleri Stillerini Geliştirme */
.game-tabs {
    background: var(--primary-color);
    display: flex;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.game-tab {
    padding: 14px 25px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    white-space: nowrap;
}

.game-tab:hover {
    background: rgba(0, 0, 0, 0.1);
}

.game-tab.active {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Alt çizgi efekti */
.game-tab:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.game-tab:hover:after {
    width: 80%;
}

.game-tab.active:after {
    width: 100%;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 16px;
        padding: 15px 20px;
    }

    .section-header h2:before {
        font-size: 20px;
    }

    .game-tab {
        padding: 12px 15px;
        font-size: 14px;
    }
}
/* Server listesi ve gösterilen oyun ismi için özel stil */

/* Öne Çıkan Serverler - İyileştirilmiş satır gösterimi */
.server-name-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.server-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* RubyMT2 örneği için özel stiller */
.server-name-cell a {
    font-weight: 500;
    font-size: 15px;
}

/* Oyun ismi rengini düzeltme (Kolay, Zor vb.) */
.server-type {
    display: inline-block;
    padding: 5px a2px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Hover durumunda tip badge'ini daha belirgin yap */
tr:hover .server-type {
    transform: scale(1.05);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* Oy sayısını daha dikkat çekici yap */
.vote-count {
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

tr:hover .vote-count {
    transform: scale(1.1);
}

/* Satır hover stillendirmelerini iyileştir */
.server-table tbody tr {
    position: relative;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.server-table tbody tr:hover {
    border-left: 3px solid var(--primary-color);
    z-index: 2;
}

/* Durum (Aktif, Kapalı vb) için iyileştirilmiş stil */
.server-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.status-active {
    background: var(--accent-green);
    color: white;
}

.status-inactive {
    background: var(--accent-red);
    color: white;
}

.status-soon {
    background: var(--accent-blue);
    color: white;
}

tr:hover .server-status {
    transform: scale(1.05);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* Server listesi başlık alanını daha güzel göster */
.server-table thead th {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    padding: 14px 15px;
    border: none;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* İlk ve son sütunlar için özel stil */
.server-table thead th:first-child {
    border-top-left-radius: 8px;
}

.server-table thead th:last-child {
    border-top-right-radius: 8px;
}

/* Tablo stilini genel olarak iyileştir */
.server-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* İlk ve son satır için özel stil */
.server-table tbody tr:first-child td {
    border-top: none;
}

.server-table tbody tr:last-child td {
    border-bottom: none;
}

/* Widget tabloları için benzer stillemeler */
.widget-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.widget-table th {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 12px 15px;
    text-align: left;
    font-size: 14px;
}

.widget-table td {
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.widget-table tr:hover td {
    background-color: rgba(255, 193, 7, 0.08);
}

.widget-table tr:last-child td {
    border-bottom: none;
}