/* Ekinoks Theme */
:root {
    --bg: #0c0c0c;
    --bg-card: #161616;
    --bg-card-hover: #1c1c1c;
    --border: rgba(232, 160, 32, 0.25);
    --border-strong: rgba(232, 160, 32, 0.55);
    --orange: #e8a020;
    --orange-light: #f5b840;
    --orange-glow: rgba(232, 160, 32, 0.15);
    --text: #e0e0e0;
    --text-muted: #888;
    --text-dim: #666;
    --white: #fff;
    --radius: 8px;
    --radius-sm: 5px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --sidebar-w: 300px;
    --header-h: 72px;
    --max-w: 1520px;
    --layout-gap: 10px;
    --layout-pad: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    line-height: 1.45;
    min-height: 100vh;
}

a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}
a:hover { color: var(--orange-light); }

img { max-width: 100%; display: block; }

/* ── Header ── */
.ek-header {
    background: linear-gradient(180deg, #111 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ek-header-inner {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--layout-pad);
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ek-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ek-brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    object-fit: contain;
    background: #111;
    padding: 4px;
}

.ek-brand-text h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1.2;
    margin: 0;
}

.ek-brand-text span {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.ek-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.ek-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 13px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.ek-nav a:hover,
.ek-nav a.active {
    background: var(--orange-glow);
    color: var(--orange-light);
}

.ek-nav a i { font-size: 13px; opacity: 0.85; }

/* Mobile nav toggle (desktop: hidden) */
.ek-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(232, 160, 32, 0.06);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}

.ek-nav-toggle:hover {
    background: var(--orange-glow);
    border-color: var(--border-strong);
}

.ek-nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

body.ek-nav-open .ek-nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.ek-nav-open .ek-nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

body.ek-nav-open .ek-nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.ek-nav-backdrop {
    display: none;
}

/* ── Layout ── */
.ek-wrapper {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    padding: var(--layout-pad);
}

.ek-grid {
    display: grid;
    grid-template-columns: var(--sidebar-w) 1fr var(--sidebar-w);
    gap: var(--layout-gap);
    align-items: start;
}

/* ── Cards ── */
.ek-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: var(--layout-gap);
    box-shadow: var(--shadow);
}

.ek-card-head {
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ek-card-head i { font-size: 14px; }

.ek-card-body { padding: 14px; }

/* ── Login ── */
.ek-login-form .ek-input {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: var(--radius-sm);
    color: var(--white);
    padding: 10px 12px;
    font-size: 13px;
    margin-bottom: 10px;
    transition: border-color 0.2s;
    outline: none;
}

.ek-login-form .ek-input:focus {
    border-color: var(--orange);
}

.ek-login-form .ek-input::placeholder { color: var(--text-dim); }

.ek-btn {
    display: block;
    width: 100%;
    padding: 11px;
    background: linear-gradient(135deg, var(--orange) 0%, #c8860a 100%);
    border: none;
    border-radius: var(--radius-sm);
    color: #111;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: filter 0.2s, transform 0.1s;
    text-align: center;
}

.ek-btn:hover { filter: brightness(1.1); color: #111; }
.ek-btn:active { transform: scale(0.98); }

.ek-btn-outline {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--orange);
    padding: 8px 12px;
    font-size: 12px;
}

.ek-btn-outline:hover { background: var(--orange-glow); color: var(--orange-light); }

.ek-forgot {
    display: block;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin: 8px 0 12px;
}

.ek-forgot:hover { color: var(--orange); }

.ek-account-info {
    text-align: center;
    line-height: 1.8;
    font-size: 13px;
}

.ek-account-info b { color: var(--orange); }

.ek-account-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

/* ── Quick Access Grid ── */
.ek-quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ek-quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 8px;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 12px;
    text-align: center;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    cursor: pointer;
}

.ek-quick-item i {
    font-size: 18px;
    color: var(--orange);
}

.ek-quick-item:hover {
    border-color: var(--border-strong);
    color: var(--orange);
    background: var(--orange-glow);
}

/* ── Ranking ── */
.ek-rank-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.ek-rank-tab {
    flex: 1;
    padding: 9px 6px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.ek-rank-tab.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

.ek-rank-list { list-style: none; }

.ek-rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid #222;
    transition: background 0.2s;
}

.ek-rank-item:last-child { border-bottom: none; }
.ek-rank-item:hover { background: var(--bg-card-hover); }

.ek-rank-pos {
    width: 24px;
    text-align: center;
    font-size: 16px;
    flex-shrink: 0;
}

.ek-rank-pos.gold { color: #ffd700; }
.ek-rank-pos.silver { color: #c0c0c0; }
.ek-rank-pos.bronze { color: #cd7f32; }
.ek-rank-pos.num { color: var(--text-dim); font-size: 13px; font-weight: 600; }

.ek-rank-name {
    flex: 1;
    color: var(--text);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ek-rank-name a { color: var(--text); }
.ek-rank-name a:hover { color: var(--orange); }

.ek-rank-level {
    color: var(--orange);
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

/* ── Hero Slider ── */
.ek-hero {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: var(--layout-gap);
    position: relative;
    background: #000;
    aspect-ratio: 16 / 6;
    min-height: 260px;
}

.ek-hero .slides { position: relative; height: 100%; }

.ek-hero .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.ek-hero .slide.active { opacity: 1; }

.ek-hero .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ek-hero .slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #111 0%, #1a1200 100%);
    color: var(--text-dim);
    font-size: 14px;
}

.ek-hero-nav {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.ek-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.2s;
    border: none;
}

.ek-hero-dot.active { background: var(--orange); }

.ek-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border);
    color: var(--orange);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.2s;
}

.ek-hero:hover .ek-hero-arrow { opacity: 1; }
.ek-hero-arrow.prev { left: 10px; }
.ek-hero-arrow.next { right: 10px; }

/* ── News ── */
.ek-news-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.ek-news-tab {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.ek-news-tab.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

.ek-news-panel { display: none; }
.ek-news-panel.active { display: block; }

.ek-news-item {
    padding: 14px 16px;
    border-bottom: 1px solid #222;
    transition: background 0.2s;
}

.ek-news-item-has-img {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ek-news-thumb-wrap {
    flex-shrink: 0;
    display: block;
    width: 130px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(232, 160, 32, 0.2);
}

.ek-news-thumb {
    display: block;
    width: 130px;
    height: 86px;
    object-fit: cover;
    background: #111;
}

.ek-news-body {
    flex: 1;
    min-width: 0;
}

.ek-news-item:last-child { border-bottom: none; }
.ek-news-item:hover { background: var(--bg-card-hover); }

.ek-patch-cover {
    margin-bottom: 18px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(232, 160, 32, 0.25);
    background: #111;
}

.ek-patch-cover img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.ek-patch-content {
    line-height: 1.8;
    color: #ccc;
}

.ek-patch-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 12px 0;
}

@media (max-width: 560px) {
    .ek-news-item-has-img {
        flex-direction: column;
    }
    .ek-news-thumb-wrap,
    .ek-news-thumb {
        width: 100%;
        height: auto;
        max-height: 180px;
    }
}

.ek-news-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.ek-news-title a { color: var(--text); }
.ek-news-title a:hover { color: var(--orange); }

.ek-news-excerpt {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ek-news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
}

.ek-news-date { color: var(--text-dim); }

.ek-news-tag {
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ek-news-tag.bakim { background: rgba(232,160,32,0.15); color: var(--orange); border: 1px solid var(--border); }
.ek-news-tag.etkinlik { background: rgba(100,200,100,0.1); color: #6dc86d; border: 1px solid rgba(100,200,100,0.3); }
.ek-news-tag.genel { background: rgba(100,150,255,0.1); color: #7aabff; border: 1px solid rgba(100,150,255,0.3); }

/* ── Stat Cards ── */
.ek-stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: var(--layout-gap);
    transition: border-color 0.2s;
}

.ek-stat-card:hover { border-color: var(--border-strong); }

.ek-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--orange-glow);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 18px;
    flex-shrink: 0;
}

.ek-stat-info { flex: 1; }

.ek-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.ek-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

/* ── Event Calendar ── */
.ek-event-list { list-style: none; }

.ek-event-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid #222;
    transition: background 0.2s;
}

.ek-event-item:last-child { border-bottom: none; }
.ek-event-item:hover { background: var(--bg-card-hover); }

.ek-event-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--orange-glow);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 13px;
    flex-shrink: 0;
}

.ek-event-info { flex: 1; min-width: 0; }

.ek-event-name {
    font-size: 12px;
    color: var(--text);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ek-event-time {
    font-size: 11px;
    color: var(--orange);
    margin-top: 2px;
}

.ek-event-frame {
    border: none;
    width: 100%;
    height: 280px;
    display: block;
}

/* ── Content Pages ── */
.ek-content-page .ek-card { margin-bottom: 0; }

.ek-page-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.ek-form-group { margin-bottom: 14px; }

.ek-form-group label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ek-form-group input,
.ek-form-group select,
.ek-form-group textarea {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: var(--radius-sm);
    color: var(--white);
    padding: 10px 12px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}

.ek-form-group input:focus,
.ek-form-group select:focus,
.ek-form-group textarea:focus { border-color: var(--orange); }

/* ── Alerts ── */
.Success-Box, .Danger-Box, .Info-Box, .Warning-Box {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    font-size: 13px;
}

.Success-Box { background: rgba(40,167,69,0.15); border: 1px solid rgba(40,167,69,0.4); color: #6dd87a; }
.Danger-Box  { background: rgba(220,53,69,0.15); border: 1px solid rgba(220,53,69,0.4); color: #f07080; }
.Info-Box    { background: rgba(23,162,184,0.15); border: 1px solid rgba(23,162,184,0.4); color: #5bc0de; }
.Warning-Box { background: rgba(255,193,7,0.15); border: 1px solid rgba(255,193,7,0.4); color: #ffc107; }

/* ── Rankings Table ── */
.ek-table {
    width: 100%;
    border-collapse: collapse;
}

.ek-table th {
    padding: 10px 12px;
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--orange);
    border-bottom: 1px solid var(--border);
    background: #111;
}

.ek-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #222;
    font-size: 13px;
    color: var(--text);
}

.ek-table tr:hover td { background: var(--bg-card-hover); }

.ek-table td a { color: var(--text); }
.ek-table td a:hover { color: var(--orange); }

/* ── Footer ── */
.ek-footer {
    background: #080808;
    border-top: 1px solid var(--border);
    margin-top: var(--layout-gap);
    padding: 32px var(--layout-pad) 24px;
}

.ek-footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.ek-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
}

.ek-footer-col { min-width: 0; }

.ek-footer-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--orange);
    white-space: nowrap;
}

.ek-footer-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(232, 160, 32, 0.45);
}

.ek-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ek-footer-links li + li { margin-top: 11px; }

.ek-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #b5a48a;
    transition: color 0.2s;
}

.ek-footer-links a::before {
    content: '–';
    color: var(--orange);
    font-weight: 700;
    line-height: 1;
}

.ek-footer-links a:hover { color: var(--orange-light); }

.ek-footer-copy {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(232, 160, 32, 0.12);
    text-align: center;
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.3px;
}

@media (max-width: 900px) {
    .ek-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .ek-footer { padding: 28px 12px 22px; }
    .ek-footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ── reCAPTCHA ── */
.g-recaptcha { margin: 10px 0; transform: scale(0.9); transform-origin: 0 0; }

/* ── Discord Widget ── */
.discord-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
}

/* ── Scroll to top ── */
#toTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 16px;
    z-index: 999;
    box-shadow: var(--shadow);
}

/* Dil seçici devre dışı — site yalnızca Türkçe */
.languagepicker {
    display: none !important;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    :root {
        --sidebar-w: 270px;
        --max-w: 100%;
    }
}

@media (max-width: 1100px) {
    .ek-grid { grid-template-columns: 250px 1fr 250px; }
}

@media (max-width: 900px) {
    .ek-grid { grid-template-columns: 1fr; }
    .ek-sidebar-left, .ek-sidebar-right { order: 2; }
    .ek-main { order: 1; }
}

@media (max-width: 600px) {
    .ek-wrapper { padding: 8px; }
    .ek-quick-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Legacy page compatibility (profile, ranked, etc.) ── */
.page_article, #content_ajax { width: 100%; }
.panel-heading, .head { color: var(--orange); font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.form-control2, .select-box {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: var(--radius-sm);
    color: var(--white);
    padding: 10px 12px;
    font-size: 13px;
    outline: none;
}
.form-control2:focus, .select-box:focus { border-color: var(--orange); }
.btn, .btn-giris, .form-btn, .green-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--orange) 0%, #c8860a 100%);
    border: none;
    border-radius: var(--radius-sm);
    color: #111;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}
.btn:hover, .btn-giris:hover, .form-btn:hover, .green-button:hover { filter: brightness(1.1); color: #111; }
.tablesorter, .sidebar_rank, table { width: 100%; border-collapse: collapse; }
.tablesorter th, .sidebar_rank th { padding: 10px 12px; text-align: left; font-size: 11px; text-transform: uppercase; color: var(--orange); border-bottom: 1px solid var(--border); background: #111; }
.tablesorter td, .sidebar_rank td { padding: 10px 12px; border-bottom: 1px solid #222; color: var(--text); font-size: 13px; }
.tablesorter tr:hover td, .sidebar_rank tr:hover td { background: var(--bg-card-hover); }
.main-text, .main-text-bg { color: var(--text); line-height: 1.7; }
.main-text-bg { padding: 16px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; }
.panel-buyuk, .panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.panel-body { padding: 16px; color: var(--text); }
aside#right { width: 100%; }

/* ── Logged-in Account Panel ── */
.ek-logged-panel { margin-bottom: 16px; }

.ek-field-row { margin-bottom: 10px; }
.ek-field-row label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    margin-bottom: 4px;
}
.ek-field-value {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 13px;
    color: var(--text);
}
.ek-field-muted { color: var(--text-muted); font-size: 12px; }

.ek-balance-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #222;
}
.ek-balance-row:last-of-type { border-bottom: none; }

.ek-balance-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--orange-glow);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 14px;
    flex-shrink: 0;
}
.ek-balance-info { flex: 1; min-width: 0; }
.ek-balance-label { display: block; font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.4px; }
.ek-balance-val { display: block; font-size: 16px; font-weight: 700; color: var(--orange); }

.ek-btn-sm {
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--orange), #c8860a);
    border: none;
    border-radius: var(--radius-sm);
    color: #111;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
}
.ek-btn-sm:hover { filter: brightness(1.1); color: #111; }

.ek-btn-logout {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ── Accordion Menu (Ekinoks2 style) ── */
.ek-card-menu { margin-bottom: 16px; }
.ek-card-menu .ek-card-body { background: #111; }

.ek-accordion { display: flex; flex-direction: column; }

.ek-acc-item {
    border-bottom: 1px solid #1e1e1e;
}
.ek-acc-item:last-child { border-bottom: none; }

.ek-acc-head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.ek-acc-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--orange);
    white-space: nowrap;
    flex-shrink: 0;
}

.ek-acc-lined .ek-acc-title {
    flex: 0 0 auto;
}

.ek-acc-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,160,32,0.5), transparent);
    min-width: 10px;
}

.ek-acc-lined .ek-acc-line:first-of-type {
    background: linear-gradient(90deg, transparent, rgba(232,160,32,0.4));
}
.ek-acc-lined .ek-acc-line:last-of-type {
    background: linear-gradient(90deg, rgba(232,160,32,0.4), transparent);
}

.ek-acc-arrow {
    margin-left: auto;
    font-size: 10px;
    color: var(--orange);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.ek-acc-item.open .ek-acc-arrow { transform: rotate(180deg); }

.ek-acc-body {
    display: none;
    background: #0d0d0d;
    padding: 6px 0 10px;
    border-top: 1px solid #1a1a1a;
}
.ek-acc-item.open .ek-acc-body { display: block; }

.ek-acc-body a {
    display: block;
    padding: 9px 16px 9px 28px;
    font-size: 13px;
    color: #b0b0b0;
    position: relative;
    transition: color 0.2s, background 0.2s;
    border-bottom: 1px solid #151515;
}
.ek-acc-body a:last-child { border-bottom: none; }

.ek-acc-body a::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0.7;
}

.ek-acc-body a:hover,
.ek-acc-body a.active {
    color: var(--orange);
    background: rgba(232,160,32,0.05);
}
.ek-acc-body a:hover::before,
.ek-acc-body a.active::before {
    opacity: 1;
    box-shadow: 0 0 6px var(--orange);
}

/* ── Center Grid (News) ── */
.ek-center-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--layout-gap);
}
.ek-card-news, .ek-card-events { margin-bottom: 0; }
.ek-event-frame { height: 340px; }

.ek-rank-class {
    color: var(--orange);
    font-size: 13px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.ek-news-more {
    margin-left: auto;
    font-size: 11px;
    color: var(--orange);
    opacity: 0.8;
}
.ek-news-more:hover { opacity: 1; }

/* ── Videos ── */
.ek-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.ek-video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 11px;
    transition: border-color 0.2s, color 0.2s;
}
.ek-video-item:hover { border-color: var(--border-strong); color: var(--orange); }
.ek-video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: #0a0a0a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--orange);
    opacity: 0.7;
}
.ek-video-item:hover .ek-video-thumb { opacity: 1; }

/* ── Login Overlay ── */
.ek-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ek-overlay-box {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    padding: 40px 50px;
    text-align: center;
    min-width: 320px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px var(--orange-glow);
}
.ek-overlay-icon { margin-bottom: 20px; min-height: 60px; display: flex; align-items: center; justify-content: center; }
.ek-overlay-box h3 { font-size: 20px; color: var(--orange); margin-bottom: 8px; font-weight: 700; }
.ek-overlay-box p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }

.ek-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid #333;
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: ek-spin 0.8s linear infinite;
}
@keyframes ek-spin { to { transform: rotate(360deg); } }

.ek-icon-success { font-size: 52px; color: #4caf50; animation: ek-pop 0.4s ease; }
.ek-icon-error   { font-size: 52px; color: #f44336; }

@keyframes ek-pop {
    0%   { transform: scale(0); opacity: 0; }
    70%  { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.ek-overlay-bar {
    height: 3px;
    background: #222;
    border-radius: 3px;
    overflow: hidden;
}
.ek-overlay-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease;
}

@media (max-width: 900px) {
    .ek-center-grid { grid-template-columns: 1fr; }
    .ek-video-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Download Modal ── */
body.ek-modal-open { overflow: hidden; }

.ek-download-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ek-download-overlay.open {
    opacity: 1;
    visibility: visible;
}

.ek-download-dialog {
    position: relative;
    width: 100%;
    max-width: 720px;
    background: #1a1a1a;
    border: 1px solid rgba(232, 160, 32, 0.35);
    border-radius: 12px;
    padding: 28px 28px 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    max-height: 90vh;
    overflow-y: auto;
}

.ek-download-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.ek-download-close:hover {
    color: var(--orange);
    background: rgba(232, 160, 32, 0.08);
}

.ek-download-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-right: 36px;
}

.ek-download-lead {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 22px;
}

.ek-download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}

.ek-download-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 12px 14px;
    background: #111;
    border: 1px solid rgba(232, 160, 32, 0.45);
    border-radius: 8px;
    color: var(--orange);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.1s;
}

.ek-download-item:hover {
    background: rgba(232, 160, 32, 0.08);
    border-color: var(--orange);
    color: var(--orange-light);
}

.ek-download-item:active { transform: scale(0.98); }

.ek-download-item-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ek-download-item-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ek-download-item-icon .ek-download-fallback { display: none; }

.ek-download-item-icon.ek-icon-fallback img { display: none; }

.ek-download-item-icon.ek-icon-fallback .ek-download-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--orange);
}

.ek-download-item-icon > .fas:not(.ek-download-fallback) {
    font-size: 18px;
    color: var(--orange);
}

.ek-download-item-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1.3;
}

.ek-download-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #777;
    padding: 24px 12px;
    border: 1px dashed #333;
    border-radius: 8px;
}

.ek-download-foot {
    text-align: center;
    color: #888;
    font-size: 12px;
    line-height: 1.8;
}

.ek-download-date {
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 6px;
}

@media (max-width: 560px) {
    .ek-download-grid { grid-template-columns: 1fr; }
    .ek-download-dialog { padding: 22px 18px 18px; }
}

/* ── Karakterlerim ── */
.ek-char-card .ek-card-body { padding: 18px; }

.ek-char-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 18px;
    border-bottom: 1px solid #2a2a2a;
}
.ek-char-tab {
    flex: 1;
    padding: 12px 10px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.ek-char-tab.active,
.ek-char-tab:hover {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

.ek-char-panel { display: none; }
.ek-char-panel.active { display: block; }

.ek-char-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #222;
}
.ek-char-name {
    margin: 0 0 4px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ek-char-level {
    font-size: 13px;
    color: var(--text-muted);
}
.ek-btn-bug {
    padding: 8px 16px;
    font-size: 12px;
    white-space: nowrap;
    background: linear-gradient(180deg, #f0a030, #c87810);
    border: 1px solid #e8a020;
}

.ek-char-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 18px;
    align-items: start;
}

.ek-char-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ek-char-render-wrap {
    background: linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
    border: 1px solid #2a2a2a;
    border-radius: var(--radius);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ek-char-render {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.ek-char-meta {
    background: #141414;
    border: 1px solid #252525;
    border-radius: var(--radius-sm);
    padding: 10px 12px;
}
.ek-char-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid #1e1e1e;
    font-size: 12px;
}
.ek-char-meta-row:last-child { border-bottom: none; }
.ek-char-meta-row span { color: var(--text-muted); }
.ek-char-meta-row strong { color: #ddd; text-align: right; }

.ek-char-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.ek-char-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #141414;
    border: 1px solid #252525;
    border-radius: var(--radius-sm);
    padding: 14px;
    min-height: 72px;
}
.ek-char-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(232,160,32,0.12);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ek-char-stat-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.ek-char-stat-val {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1.3;
    word-break: break-word;
}

.ek-char-countdown {
    text-align: center;
    padding: 20px;
}
.ek-char-countdown span {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--orange);
}
.ek-char-ban-text {
    text-align: center;
    color: #bbb;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .ek-char-layout { grid-template-columns: 1fr; }
    .ek-char-stats { grid-template-columns: 1fr; }
    .ek-char-topbar { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════
   MOBILE — site-wide responsive polish
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
    :root {
        --header-h: 64px;
        --layout-pad: 12px;
        --layout-gap: 12px;
    }

    .ek-header-inner {
        justify-content: space-between;
        gap: 10px;
    }

    .ek-brand {
        min-width: 0;
        flex: 1;
    }

    .ek-brand-logo {
        width: 44px;
        height: 44px;
    }

    .ek-brand-text h1 {
        font-size: 17px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ek-brand-text span {
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        max-width: 180px;
    }

    .ek-nav-toggle {
        display: flex;
    }

    .ek-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 88vw);
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 0;
        padding: calc(var(--header-h) + 8px) 0 28px;
        background: linear-gradient(180deg, #161616 0%, #0a0a0a 100%);
        border-left: 1px solid var(--border-strong);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.55);
        transform: translateX(105%);
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1002;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    body.ek-nav-open .ek-nav {
        transform: translateX(0);
    }

    .ek-nav a {
        padding: 14px 20px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        white-space: normal;
        font-size: 14px;
    }

    .ek-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.68);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.28s ease, visibility 0.28s ease;
    }

    body.ek-nav-open .ek-nav-backdrop {
        opacity: 1;
        visibility: visible;
    }

    body.ek-nav-open {
        overflow: hidden;
    }

    .ek-hero {
        aspect-ratio: 16 / 9;
        min-height: 180px;
    }

    .ek-hero-arrow {
        width: 34px;
        height: 34px;
        font-size: 12px;
        opacity: 0.85;
    }

    .ek-stat-value { font-size: 20px; }

    .ek-news-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .ek-news-tabs::-webkit-scrollbar { display: none; }

    .ek-news-tab {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .ek-rank-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .ek-rank-tab { flex-shrink: 0; }

    .ek-quick-grid { grid-template-columns: repeat(2, 1fr); }

    .ek-overlay-box {
        min-width: 0;
        width: calc(100vw - 32px);
        max-width: 360px;
        padding: 28px 24px;
    }

    .g-recaptcha {
        transform: scale(0.82);
        transform-origin: 0 0;
    }

    .languagepicker {
        top: auto;
        bottom: 80px;
        border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    }

    #toTop {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }

    .discord-widget {
        bottom: 16px;
        left: 16px;
        transform: scale(0.9);
        transform-origin: bottom left;
    }

    .ek-table-wrap,
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 calc(var(--layout-pad) * -1);
        padding: 0 var(--layout-pad);
    }

    table.ek-table,
    .panel-body table,
    #content_ajax table {
        min-width: 520px;
    }
}

@media (max-width: 600px) {
    .ek-wrapper { padding: 10px; }

    .ek-brand-text span { max-width: 140px; }

    .ek-video-grid { grid-template-columns: 1fr; }

    .ek-card-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .ek-btn-sm {
        width: 100%;
        justify-content: center;
    }

    .ek-download-dialog {
        max-height: 85dvh;
    }
}

@media (max-width: 400px) {
    .ek-brand-text h1 { font-size: 15px; }
    .ek-quick-grid { grid-template-columns: 1fr; }
}

/* ── Ban reason badges (progressive severity colors) ── */
.ek-ban-badge {
    display: inline-block;
    max-width: 100%;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
}
.ek-ban-badge-hakaret { background: #d4b429; color: #1a1200; }
.ek-ban-badge-argo-1 { background: #e8943a; color: #1a0e00; }
.ek-ban-badge-argo-2 { background: #c76a1f; color: #fff; }
.ek-ban-badge-argo-3 { background: #9a4510; color: #fff; }
.ek-ban-badge-kufur-1 { background: #d45a3a; color: #fff; }
.ek-ban-badge-kufur-2 { background: #a83828; color: #fff; }
.ek-ban-badge-kufur-3 { background: #6b1a22; color: #fff; }
.ek-ban-badge-hile-simple { background: #e07a2a; color: #1a0e00; }
.ek-ban-badge-hile-1 { background: #c0392b; color: #fff; }
.ek-ban-badge-hile-2 { background: #8b2020; color: #fff; }
.ek-ban-badge-hile-3 { background: #4a1010; color: #fff; }
.ek-ban-badge-odt { background: #5a6478; color: #eef2f8; }
.ek-ban-badge-sw-reklam { background: #4a5568; color: #eef2f8; border: 1px solid #6b7280; }
.ek-ban-badge-admin { background: #2f3542; color: #eef2f8; border: 1px solid #4a5568; }
.ek-ban-badge-duzen { background: #b8651a; color: #fff; }
.ek-ban-badge-dini { background: #6b7280; color: #fff; }
.ek-ban-badge-kadin-1 { background: #8b6914; color: #fff; }
.ek-ban-badge-kadin-2 { background: #3d4451; color: #eef2f8; border: 1px solid #5a6478; }
.ek-ban-badge-default { background: rgba(201,162,39,0.2); color: #e8c547; border: 1px solid rgba(201,162,39,0.35); }

/* ── Hesaplarım ── */
.ek-char-back {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
}
.ek-char-back:hover { color: var(--orange); }

.ek-accounts-notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    margin-bottom: 18px;
    background: rgba(52, 152, 219, 0.12);
    border: 1px solid rgba(52, 152, 219, 0.35);
    border-radius: 8px;
    color: #b8d4f0;
    font-size: 13px;
    line-height: 1.6;
}
.ek-accounts-notice i {
    color: #5dade2;
    font-size: 18px;
    margin-top: 2px;
}
.ek-accounts-notice p { margin: 0; }
.ek-accounts-notice strong { color: #fff; }

.ek-accounts-tabs { margin-top: 4px; }

.ek-accounts-panel { display: none; }
.ek-accounts-panel.active { display: block; }

.ek-accounts-field {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    margin-bottom: 10px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    transition: border-color 0.2s;
}
.ek-accounts-panel.active .ek-accounts-field {
    border-color: rgba(232, 160, 32, 0.35);
}
.ek-accounts-field-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(232, 160, 32, 0.12);
    color: var(--orange);
    font-size: 16px;
    flex-shrink: 0;
}
.ek-accounts-field-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.ek-accounts-field-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
}
.ek-accounts-field-value {
    font-size: 14px;
    font-weight: 600;
    color: #f0f0f0;
    word-break: break-all;
}
.ek-accounts-hint {
    margin: 0 0 16px;
    font-size: 12px;
    color: #777;
    line-height: 1.5;
}
.ek-accounts-captcha { margin-bottom: 16px; }
.ek-accounts-submit {
    width: 100%;
    margin-top: 4px;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.ek-accounts-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* Güvenlik Profili */
.ek-security-notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    margin-bottom: 18px;
    border: 1px solid rgba(232, 160, 32, 0.45);
    border-radius: 8px;
    background: rgba(232, 160, 32, 0.08);
    color: #ccc;
    font-size: 13px;
    line-height: 1.6;
}
.ek-security-notice i {
    color: #e8a020;
    margin-top: 2px;
}
.ek-security-notice p { margin: 0; }
.ek-security-form { margin-top: 8px; }
.ek-security-field { margin-bottom: 12px; }
.ek-security-field input,
.ek-security-field select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    background: #0f0f0f;
    color: #e8e8e8;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}
.ek-security-field input:focus,
.ek-security-field select:focus {
    border-color: rgba(232, 160, 32, 0.55);
}
.ek-security-field select option {
    background: #111;
    color: #e8e8e8;
}
.ek-security-captcha { margin: 14px 0; }
.ek-security-submit {
    width: 100%;
    margin-top: 6px;
    font-weight: 700;
    letter-spacing: 0.4px;
}
.ek-security-summary {
    margin-bottom: 18px;
    padding: 16px;
    border: 1px solid #252525;
    border-radius: 10px;
    background: #101010;
}
.ek-security-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #1c1c1c;
    font-size: 14px;
}
.ek-security-summary-row:last-child { border-bottom: none; }
.ek-security-summary-row span { color: #888; }
.ek-security-summary-row strong { color: #fff; text-align: right; }
.ek-security-tabs { margin: 8px 0 16px; flex-wrap: wrap; }
.ek-security-panel { display: none; }
.ek-security-panel.active { display: block; }
.ek-security-hint {
    margin: 0 0 14px;
    color: #999;
    font-size: 13px;
    line-height: 1.6;
}
.ek-security-hint strong { color: #e8a020; }

/* Destek Talepleri */
.ek-support-card .ek-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ek-support-head-btn {
    margin-left: auto;
    color: #e8a020;
    font-size: 16px;
}
.ek-support-intro {
    margin: 0 0 16px;
    color: #999;
    font-size: 13px;
    line-height: 1.6;
}
.ek-support-toolbar {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.ek-support-search {
    flex: 1;
    min-width: 200px;
    padding: 12px 14px;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    background: #0f0f0f;
    color: #e8e8e8;
    font-size: 14px;
}
.ek-support-new { white-space: nowrap; }
.ek-support-tabs { margin-bottom: 14px; flex-wrap: wrap; }
.ek-support-tabs .ek-char-tab {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ek-support-table-wrap {
    overflow-x: auto;
    border: 1px solid #252525;
    border-radius: 10px;
}
.ek-support-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.ek-support-table thead {
    background: linear-gradient(180deg, #1a1200 0%, #141414 100%);
}
.ek-support-table th {
    padding: 14px 12px;
    text-align: left;
    color: #e8a020;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(232, 160, 32, 0.25);
}
.ek-support-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #1c1c1c;
    color: #ddd;
}
.ek-support-row:hover td { background: rgba(232, 160, 32, 0.04); }
.ek-support-id, .ek-support-subject {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.ek-support-id:hover, .ek-support-subject:hover { color: #e8a020; }
.ek-support-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.ek-support-badge-1 {
    background: rgba(232, 160, 32, 0.15);
    border: 1px solid rgba(232, 160, 32, 0.45);
    color: #e8a020;
}
.ek-support-badge-0 {
    background: rgba(46, 160, 67, 0.12);
    border: 1px solid rgba(46, 160, 67, 0.35);
    color: #6fcf97;
}
.ek-support-badge-2 {
    background: rgba(120, 120, 120, 0.12);
    border: 1px solid #444;
    color: #aaa;
}
.ek-support-footer {
    margin-top: 12px;
    color: #777;
    font-size: 12px;
}
.ek-support-empty {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}
.ek-support-empty i {
    font-size: 42px;
    color: #e8a020;
    margin-bottom: 12px;
    display: block;
}
.ek-support-form textarea {
    width: 100%;
    min-height: 160px;
    padding: 14px 16px;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    background: #0f0f0f;
    color: #e8e8e8;
    font-size: 14px;
    resize: vertical;
    outline: none;
    font-family: inherit;
}
.ek-support-form textarea:focus { border-color: rgba(232, 160, 32, 0.55); }
.ek-support-rules {
    margin-top: 28px;
    padding: 18px;
    border: 1px solid #252525;
    border-radius: 10px;
    background: #0f0f0f;
}
.ek-support-rules h3 {
    margin: 0 0 12px;
    color: #e8a020;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.ek-support-rules ul {
    margin: 0;
    padding-left: 18px;
    color: #ccc;
    font-size: 13px;
    line-height: 1.8;
}
.ek-support-meta {
    margin-bottom: 20px;
    padding: 16px;
    border: 1px solid #252525;
    border-radius: 10px;
    background: #101010;
}
.ek-support-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #1c1c1c;
    font-size: 14px;
}
.ek-support-meta-row:last-child { border-bottom: none; }
.ek-support-meta-row span { color: #888; }
.ek-support-meta-row strong { color: #fff; text-align: right; }
.ek-support-thread { margin-bottom: 18px; }
.ek-support-msg {
    margin-bottom: 14px;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #252525;
}
.ek-support-msg-user {
    background: #101010;
    border-left: 3px solid #e8a020;
}
.ek-support-msg-admin {
    background: #0d1117;
    border-left: 3px solid #4a9eff;
}
.ek-support-msg-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}
.ek-support-msg-head strong { color: #fff; }
.ek-support-msg-admin .ek-support-msg-head strong { color: #4a9eff; }
.ek-support-msg-head span { color: #777; }
.ek-support-msg-body {
    color: #ddd;
    font-size: 14px;
    line-height: 1.7;
    word-break: break-word;
}
.ek-support-msg-body a { color: #e8a020; }
.ek-support-notice {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 14px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: rgba(74, 158, 255, 0.08);
    border: 1px solid rgba(74, 158, 255, 0.25);
    color: #bbb;
    font-size: 13px;
}
.ek-support-notice i { color: #4a9eff; margin-top: 2px; }
.ek-support-notice p { margin: 0; }
.ek-support-reply textarea {
    width: 100%;
    min-height: 120px;
    padding: 14px 16px;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    background: #0f0f0f;
    color: #e8e8e8;
    font-size: 14px;
    resize: vertical;
    outline: none;
    font-family: inherit;
    margin-bottom: 12px;
}
.ek-support-reply textarea:focus { border-color: rgba(232, 160, 32, 0.55); }

/* ── Satın Alma Geçmişi ── */
.ek-purchase-card {
    margin-bottom: 0;
}

.ek-purchase-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.ek-purchase-title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ek-purchase-search {
    margin-left: auto;
}

.ek-purchase-search input {
    width: 240px;
    max-width: 100%;
    height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(232, 160, 32, 0.25);
    border-radius: 8px;
    background: #111;
    color: #eee;
    font-size: 13px;
    outline: none;
}

.ek-purchase-search input:focus {
    border-color: rgba(232, 160, 32, 0.55);
}

.ek-purchase-search input::placeholder {
    color: #666;
}

.ek-purchase-table-wrap {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    overflow: hidden;
    background: #121212;
}

.ek-purchase-table {
    width: 100%;
    border-collapse: collapse;
}

.ek-purchase-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--orange);
    background: #181818;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ek-purchase-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px;
    color: #ddd;
    vertical-align: middle;
}

.ek-purchase-table tbody tr:last-child td {
    border-bottom: none;
}

.ek-purchase-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.ek-purchase-product {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.ek-purchase-product-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.35);
}

.ek-purchase-product-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.ek-purchase-product-info strong {
    color: #eee;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.ek-purchase-product-info span {
    color: #777;
    font-size: 11px;
}

.ek-purchase-empty-row td {
    padding: 48px 16px !important;
    text-align: center;
}

.ek-purchase-empty-msg {
    display: block;
    color: #888;
    font-size: 14px;
}

.ek-purchase-pager {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.ek-purchase-pager-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 38px;
    padding: 0 18px;
    border-radius: 8px;
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ccc !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.ek-purchase-pager-btn:hover:not(.is-disabled) {
    border-color: rgba(232, 160, 32, 0.35);
    color: var(--orange) !important;
}

.ek-purchase-pager-btn.is-disabled {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 768px) {
    .ek-purchase-head {
        flex-direction: column;
        align-items: stretch;
    }

    .ek-purchase-search {
        margin-left: 0;
    }

    .ek-purchase-search input {
        width: 100%;
    }

    .ek-purchase-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ek-purchase-table {
        min-width: 560px;
    }

    .ek-purchase-title {
        font-size: 18px;
    }
}

/* ── Hesap Satışları ── */
.ek-accountsale-card {
    margin-bottom: 0;
}

.ek-accountsale-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.ek-accountsale-title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ek-accountsale-filters {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    margin-left: auto;
}

.ek-accountsale-filters label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

.ek-accountsale-filters select {
    min-width: 120px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(232, 160, 32, 0.25);
    border-radius: 8px;
    background: #111;
    color: #eee;
    font-size: 13px;
    outline: none;
}

.ek-accountsale-filter-btn {
    height: 38px;
    padding: 0 18px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(180deg, #f5a623 0%, #c97400 100%);
    color: #1a1208;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.ek-accountsale-empty {
    text-align: center;
    padding: 56px 20px;
    color: #888;
}

.ek-accountsale-empty i {
    font-size: 36px;
    margin-bottom: 12px;
    color: #555;
}

.ek-accountsale-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.ek-accountsale-item {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ek-accountsale-item-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #101010;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ek-accountsale-lv {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    border: 1px solid rgba(232, 160, 32, 0.35);
    border-radius: 4px;
    padding: 2px 6px;
    white-space: nowrap;
}

.ek-accountsale-name {
    font-size: 13px;
    color: #eee;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ek-accountsale-rank {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 4px;
    white-space: nowrap;
    background: #333;
    color: #ccc;
}

.ek-accountsale-rank-good { background: rgba(59, 130, 246, 0.2); color: #8ec5ff; }
.ek-accountsale-rank-hero { background: rgba(20, 184, 166, 0.2); color: #7ee8d8; }
.ek-accountsale-rank-legend { background: rgba(120, 120, 120, 0.25); color: #ddd; }
.ek-accountsale-rank-bad { background: rgba(220, 53, 69, 0.15); color: #ff9aa6; }

.ek-accountsale-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 8px;
    background: radial-gradient(circle at center, rgba(232, 160, 32, 0.06) 0%, transparent 70%);
}

.ek-accountsale-visual img {
    max-width: 100%;
    max-height: 170px;
    object-fit: contain;
}

.ek-accountsale-visual-lg {
    min-height: 280px;
}

.ek-accountsale-visual-lg img {
    max-height: 260px;
}

.ek-accountsale-desc {
    margin: 0;
    padding: 10px 12px;
    min-height: 52px;
    font-size: 11px;
    line-height: 1.45;
    color: #aaa;
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ek-accountsale-item-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px 12px;
}

.ek-accountsale-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
}

.ek-accountsale-price-lg {
    color: var(--orange) !important;
    font-size: 16px !important;
}

.ek-accountsale-btn,
.ek-accountsale-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 6px;
    background: linear-gradient(180deg, #f5a623 0%, #c97400 100%);
    color: #1a1208 !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.ek-accountsale-detail-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.ek-accountsale-back {
    color: #aaa !important;
    font-size: 13px;
    text-decoration: none;
}

.ek-accountsale-back:hover {
    color: var(--orange) !important;
}

.ek-accountsale-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 20px;
}

.ek-accountsale-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.ek-accountsale-meta > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
}

.ek-accountsale-meta span {
    color: #888;
}

.ek-accountsale-meta strong {
    color: #eee;
}

.ek-accountsale-desc-box {
    margin-bottom: 16px;
    padding: 14px;
    border-radius: 8px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ek-accountsale-desc-box h3 {
    margin: 0 0 8px;
    font-size: 13px;
    color: var(--orange);
    text-transform: uppercase;
}

.ek-accountsale-desc-box p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #bbb;
}

.ek-accountsale-buy-form h3 {
    margin: 0 0 8px;
    font-size: 14px;
    color: var(--orange);
    text-transform: uppercase;
}

.ek-accountsale-buy-note {
    margin: 0 0 14px;
    font-size: 12px;
    color: #999;
    line-height: 1.5;
}

.ek-accountsale-buy-form label {
    display: block;
    margin: 0 0 6px;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

.ek-accountsale-buy-form input {
    width: 100%;
    box-sizing: border-box;
    height: 40px;
    margin-bottom: 12px;
    padding: 0 12px;
    border: 1px solid rgba(232, 160, 32, 0.25);
    border-radius: 8px;
    background: #111;
    color: #eee;
}

.ek-accountsale-buy-btn {
    width: 100%;
    height: 44px;
    margin-top: 4px;
    font-size: 13px;
}

.ek-accountsale-buy-msg {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
}

.ek-accountsale-buy-msg.is-success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.35);
    color: #6dd87a;
}

.ek-accountsale-buy-msg.is-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.35);
    color: #f07080;
}

.ek-accountsale-login-box {
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.ek-accountsale-login-box p {
    margin: 0 0 12px;
    color: #999;
    font-size: 13px;
}

@media (max-width: 1200px) {
    .ek-accountsale-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .ek-accountsale-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ek-accountsale-detail-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .ek-accountsale-grid {
        grid-template-columns: 1fr;
    }

    .ek-accountsale-head {
        flex-direction: column;
        align-items: stretch;
    }

    .ek-accountsale-filters {
        margin-left: 0;
    }
}

/* ── Rehber (Guide) ── */
.ek-rehber-card { margin-bottom: 0; }
.ek-rehber-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.ek-rehber-title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: #eef2ef;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.ek-rehber-search {
    display: flex;
    align-items: stretch;
    min-width: 220px;
    max-width: 320px;
    flex: 1;
}
.ek-rehber-search input {
    flex: 1;
    background: #0a0a0a;
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--text);
    padding: 10px 12px;
    font-size: 13px;
    outline: none;
}
.ek-rehber-search input:focus { border-color: var(--border-strong); }
.ek-rehber-search button {
    background: linear-gradient(180deg, var(--amber-light) 0%, var(--amber-dark) 100%);
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #111;
    padding: 0 14px;
    cursor: pointer;
}
.ek-rehber-table-wrap { overflow-x: auto; }
.ek-rehber-table {
    width: 100%;
    border-collapse: collapse;
}
.ek-rehber-table thead { background: #111; }
.ek-rehber-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.ek-rehber-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #1a1a1a;
    font-size: 13px;
    vertical-align: middle;
}
.ek-rehber-row:hover td { background: rgba(232, 160, 32, 0.04); }
.ek-rehber-cat { color: var(--text-muted); white-space: nowrap; }
.ek-rehber-link {
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.3px;
}
.ek-rehber-link:hover { color: var(--orange-light); }
.ek-rehber-date { color: #888; font-size: 12px; white-space: nowrap; }
.ek-rehber-empty { text-align: center; color: #666; padding: 40px 16px !important; }

.ek-rehber-detail { margin-bottom: 0; }
.ek-rehber-detail-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 20px 0;
    flex-wrap: wrap;
}
.ek-rehber-detail-title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--orange);
    text-transform: uppercase;
    line-height: 1.35;
    flex: 1;
    min-width: 0;
}
.ek-rehber-detail-time {
    color: #888;
    font-size: 12px;
    white-space: nowrap;
    padding-top: 4px;
}
.ek-rehber-detail-body { padding-top: 16px; }
.ek-rehber-detail-cover {
    margin-bottom: 18px;
    text-align: center;
}
.ek-rehber-detail-cover img {
    max-width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.ek-rehber-content {
    color: var(--text);
    line-height: 1.7;
    font-size: 14px;
}
.ek-rehber-content img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
.ek-rehber-content h2, .ek-rehber-content h3 { color: var(--orange); margin: 18px 0 10px; }
.ek-rehber-content hr { border: none; border-top: 1px solid #333; margin: 20px 0; }
.ek-rehber-content ul { padding-left: 20px; margin: 10px 0; }
.ek-rehber-content li { margin-bottom: 8px; }
.ek-rehber-detail-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #222;
    flex-wrap: wrap;
}
.ek-rehber-cat-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #111;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-muted);
}
.ek-rehber-share { display: flex; gap: 8px; }
.ek-rehber-share a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #111;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: border-color 0.2s, color 0.2s;
}
.ek-rehber-share a:hover { border-color: var(--orange); color: var(--orange); }
.ek-rehber-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 13px;
    color: var(--text-muted);
}
.ek-rehber-back:hover { color: var(--orange); }

@media (max-width: 768px) {
    .ek-rehber-head { flex-direction: column; align-items: stretch; }
    .ek-rehber-search { max-width: none; }
    .ek-rehber-table th:nth-child(3),
    .ek-rehber-table td.ek-rehber-date { display: none; }
}

