/* ═══════════════════════════════════════════════════════
   ATLANTIS SHARD — Ultima Online Private Server
   Improved Design v2.0
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cinzel+Decorative:wght@400;700&family=IM+Fell+English:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark:       #060912;
  --bg-deep:       #080c16;
  --bg-card:       #0d1525;
  --bg-card-hover: #111e34;
  --bg-input:      #0a1020;
  --border:        #1a2540;
  --border-glow:   #c9a24e;
  --border-mid:    #253050;
  --gold:          #d4a843;
  --gold-light:    #f0d890;
  --gold-bright:   #ffd96a;
  --gold-dark:     #9a7520;
  --gold-dim:      #7a5e1a;
  --accent:        #3b82f6;
  --accent-light:  #60a5fa;
  --red:           #ef4444;
  --green:         #22c55e;
  --text:          #e2e8f0;
  --text-muted:    #94a3b8;
  --text-dim:      #4a5568;
  --white:         #ffffff;
  --font-display:  'Cinzel', serif;
  --font-deco:     'Cinzel Decorative', serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:        10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --shadow:        0 8px 32px rgba(0,0,0,.6);
  --shadow-gold:   0 0 24px rgba(212,168,67,.18), 0 0 60px rgba(212,168,67,.06);
  --shadow-card:   0 4px 20px rgba(0,0,0,.5);
  --transition:    .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(212,168,67,.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(59,130,246,.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Navbar ─── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,9,18,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: .7rem 0;
  transition: transform .3s ease, box-shadow .3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,.6);
  border-bottom-color: rgba(212,168,67,.15);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; flex-shrink: 0; }
.nav-brand-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 6px rgba(212,168,67,.4));
  animation: icon-pulse 3s ease-in-out infinite;
}
@keyframes icon-pulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(212,168,67,.4)); }
  50% { filter: drop-shadow(0 0 14px rgba(212,168,67,.7)); }
}
.nav-brand-text {
  font-family: var(--font-deco);
  font-weight: 700; font-size: 1.1rem;
  color: var(--gold); letter-spacing: .06em;
  text-shadow: 0 0 20px rgba(212,168,67,.3);
}
.nav-links { list-style: none; display: flex; align-items: center; gap: .15rem; }
.nav-link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .45rem .85rem; border-radius: var(--radius);
  font-size: .875rem; font-weight: 500; color: var(--text-muted);
  transition: all var(--transition); position: relative; letter-spacing: .01em;
  background: none; border: none; cursor: pointer; font-family: inherit;
  text-decoration: none;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 1.5px; background: var(--gold);
  transition: left .25s ease, right .25s ease; border-radius: 1px;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(212,168,67,.07); }
.nav-link:hover::after, .nav-link.active::after { left: 12%; right: 12%; }
.nav-link.active { color: var(--gold-light); }
.nav-link-exit { color: var(--text-dim) !important; }
.nav-link-exit:hover { color: #f87171 !important; background: rgba(239,68,68,.08) !important; }

/* Mesajlar nav butonu badge */
.nav-pm-badge {
  background: #ef4444; color: #fff;
  font-size: .6rem; font-weight: 700; line-height: 1;
  min-width: 16px; height: 16px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 4px;
}
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--text); font-size: 1.4rem; padding: .35rem .6rem;
  border-radius: var(--radius); cursor: pointer; transition: all var(--transition);
}
.nav-toggle:hover { border-color: var(--gold); color: var(--gold); }

/* ─── HERO ─── */
.hero {
  position: relative; padding: 6rem 0 5rem;
  text-align: center; overflow: hidden; z-index: 2;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(212,168,67,.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(59,130,246,.05) 0%, transparent 50%),
    linear-gradient(180deg, rgba(6,9,18,.2) 0%, var(--bg-dark) 100%);
  pointer-events: none;
}
.hero-orb {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,.06) 0%, transparent 70%);
  animation: orb-breathe 6s ease-in-out infinite; pointer-events: none;
}
@keyframes orb-breathe {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .6; }
  50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-size: .78rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dim);
  border: 1px solid rgba(212,168,67,.2); border-radius: 999px;
  padding: .35rem 1.2rem; margin-bottom: 1.5rem;
  animation: fade-up .8s ease both;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: '◆'; font-size: .45rem; color: var(--gold); opacity: .5; }
.hero-title {
  font-family: var(--font-deco); font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.1; color: var(--gold);
  text-shadow: 0 0 30px rgba(212,168,67,.3), 0 2px 4px rgba(0,0,0,.5);
  margin-bottom: .75rem; animation: fade-up .8s .1s ease both;
}
.hero-title-line2 {
  display: block; font-size: .55em; color: var(--text-muted);
  font-family: var(--font-display); font-weight: 400;
  letter-spacing: .08em; text-shadow: none; margin-top: .3rem;
}
.hero-subtitle {
  font-size: clamp(.95rem, 2.5vw, 1.2rem); color: var(--text-muted);
  max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.7;
  animation: fade-up .8s .2s ease both;
}
.hero-divider {
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.75rem auto; animation: fade-up .8s .25s ease both;
}
.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem;
  margin-bottom: 2.5rem; animation: fade-up .8s .3s ease both;
}
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(13,21,37,.8); border: 1px solid var(--border-mid);
  border-radius: 999px; padding: .45rem 1.1rem; font-size: .82rem;
  color: var(--text-muted); backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.badge:hover { border-color: var(--border-glow); box-shadow: var(--shadow-gold); }
.badge strong { color: var(--gold); }
.badge-online { background: rgba(34,197,94,.06); border-color: rgba(34,197,94,.25); color: var(--green); }
.hero-actions {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
  animation: fade-up .8s .4s ease both;
}
.scroll-indicator {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: var(--text-dim); font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; animation: fade-up 1s .8s ease both; cursor: pointer;
}
.scroll-mouse {
  width: 22px; height: 34px; border: 1.5px solid var(--border-mid);
  border-radius: 11px; display: flex; justify-content: center; padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 6px; background: var(--gold); border-radius: 2px;
  animation: scroll-wheel 2s ease infinite;
}
@keyframes scroll-wheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: .3; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.9rem; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 600;
  font-size: .9rem; letter-spacing: .04em; cursor: pointer;
  transition: all var(--transition); border: none;
  text-decoration: none; position: relative; overflow: hidden;
}
.btn-gold {
  background: linear-gradient(135deg, #e8b84b 0%, #c49430 50%, #a87826 100%);
  color: #0a0c14;
  box-shadow: 0 4px 20px rgba(212,168,67,.25), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,67,.4), inset 0 1px 0 rgba(255,255,255,.2);
  color: #0a0c14;
}
.btn-gold:active { transform: translateY(0); }
.btn-outline {
  background: transparent; border: 1px solid var(--border-mid); color: var(--text-muted);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px); background: rgba(212,168,67,.05);
}
.btn-ghost {
  background: rgba(212,168,67,.08); border: 1px solid rgba(212,168,67,.15); color: var(--gold);
}
.btn-ghost:hover {
  background: rgba(212,168,67,.14); border-color: rgba(212,168,67,.3); color: var(--gold-light);
}
.btn-danger {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  color: var(--white); box-shadow: 0 4px 15px rgba(239,68,68,.2);
}
.btn-danger:hover { opacity: .9; transform: translateY(-1px); }
.btn-sm { padding: .5rem 1rem; font-size: .82rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─── STATS STRIP ─── */
.stats-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem; padding: 3rem 0;
}
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  text-align: center; transition: all var(--transition);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.stat-card:hover { border-color: rgba(212,168,67,.25); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.stat-card:hover::before { opacity: 1; }
.stat-value {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: var(--gold); line-height: 1.2; text-shadow: 0 0 20px rgba(212,168,67,.2);
}
.stat-label { font-size: .82rem; color: var(--text-muted); margin-top: .35rem; letter-spacing: .03em; }

/* ─── SECTIONS ─── */
.section { padding: 5rem 0; }
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--gold);
  margin-bottom: 2.5rem; text-align: center;
}

/* ─── INFO CARDS ─── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.25rem; }
.info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  text-align: center; transition: all var(--transition); position: relative; overflow: hidden;
}
.info-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,168,67,.05) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
}
.info-card:hover { border-color: rgba(212,168,67,.25); box-shadow: var(--shadow-gold); transform: translateY(-5px); }
.info-card:hover::after { opacity: 1; }
.info-icon { font-size: 2.8rem; margin-bottom: 1rem; transition: transform var(--transition); }
.info-card:hover .info-icon { transform: scale(1.1) rotate(-3deg); }
.info-card h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold); margin-bottom: .5rem; }
.info-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.6; }

/* ─── FEATURE BOXES ─── */
.feature-boxes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.feature-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem; transition: all var(--transition);
}
.feature-box:hover { border-color: rgba(212,168,67,.2); box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.feature-box h4 {
  font-family: var(--font-display); font-size: 1rem; color: var(--gold-light);
  margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border);
}
.feature-box ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.feature-box ul li {
  font-size: .88rem; color: var(--text-muted); padding-left: 1.2rem; position: relative;
}
.feature-box ul li::before {
  content: '◆'; position: absolute; left: 0; font-size: .45rem;
  color: var(--gold-dim); top: .3rem;
}

/* ─── NEWS GRID ─── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.25rem; }
.news-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem; transition: all var(--transition);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.news-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  opacity: 0; transition: opacity var(--transition);
}
.news-card:hover { border-color: rgba(212,168,67,.2); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.news-card:hover::before { opacity: 1; }
.news-card h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold-light); margin-bottom: .6rem; line-height: 1.4; }
.news-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.6; margin-bottom: 1rem; flex-grow: 1; }
.news-meta { font-size: .78rem; color: var(--text-dim); padding-top: .75rem; border-top: 1px solid var(--border); margin-top: auto; }

/* ─── FORMS ─── */
.form-page {
  min-height: calc(100vh - 200px); display: flex;
  align-items: center; justify-content: center;
  padding: 3rem 1.5rem; position: relative; z-index: 2;
}
.form-container {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem 2.25rem;
  width: 100%; max-width: 440px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.form-container::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.form-title {
  font-family: var(--font-deco); font-size: 1.5rem; color: var(--gold);
  text-align: center; margin-bottom: .5rem; letter-spacing: .03em;
}
.form-subtitle { text-align: center; color: var(--text-muted); font-size: .88rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .83rem; font-weight: 600; color: var(--text); margin-bottom: .45rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--bg-input); border: 1px solid var(--border-mid);
  border-radius: var(--radius); color: var(--text); padding: .75rem 1rem;
  font-size: .9rem; font-family: var(--font-body); transition: all var(--transition); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(212,168,67,.5); box-shadow: 0 0 0 3px rgba(212,168,67,.08);
}
.form-input::placeholder { color: var(--text-dim); }
.form-hint { font-size: .78rem; color: var(--text-dim); margin-top: .35rem; line-height: 1.5; }

/* ─── ALERTS ─── */
.alert {
  padding: .9rem 1.1rem; border-radius: var(--radius);
  font-size: .875rem; margin-bottom: 1.25rem;
  display: flex; align-items: flex-start; gap: .6rem; line-height: 1.5;
}
.alert-error { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.25); color: #fca5a5; }
.alert-success { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.25); color: #86efac; }
.alert-info { background: rgba(59,130,246,.08); border: 1px solid rgba(59,130,246,.25); color: #93c5fd; }
.alert-warning { background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.2); color: #fcd34d; }

/* ─── ONLINE INDICATOR ─── */
.online-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.online-dot.on {
  background: var(--green); box-shadow: 0 0 0 2px rgba(34,197,94,.2);
  animation: pulse-dot 2s ease-in-out infinite;
}
.online-dot.off { background: var(--text-dim); }
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,.2); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,.0); }
}

/* ─── STATS PAGE ─── */
.stats-hero { padding: 4rem 0 2rem; text-align: center; position: relative; z-index: 2; }
.stats-hero h1 { font-family: var(--font-deco); font-size: 2.4rem; color: var(--gold); margin-bottom: .5rem; text-shadow: 0 0 30px rgba(212,168,67,.2); }
.stats-hero p { color: var(--text-muted); font-size: 1rem; }
.stats-table-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition);
}
.stats-table-wrap:hover { border-color: rgba(212,168,67,.15); box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.stats-table-title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--gold); padding: 1.1rem 1.5rem; border-bottom: 1px solid var(--border);
  background: rgba(10,14,23,.4); display: flex; align-items: center; gap: .5rem;
}
.stats-table { width: 100%; border-collapse: collapse; }
.stats-table thead th {
  padding: .6rem 1.1rem; font-size: .72rem; font-family: var(--font-display);
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim);
  text-align: left; background: rgba(10,14,23,.2); border-bottom: 1px solid var(--border);
}
.stats-table tbody tr { border-bottom: 1px solid rgba(26,37,64,.5); transition: background var(--transition); }
.stats-table tbody tr:hover { background: var(--bg-card-hover); }
.stats-table tbody tr:last-child { border-bottom: none; }
.stats-table tbody td { padding: .8rem 1.1rem; font-size: .88rem; color: var(--text-muted); }
.rank-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%; font-size: .78rem;
  font-weight: 700; font-family: var(--font-display);
}
.rank-1 { background: linear-gradient(135deg, #ffd700, #c8a000); color: #0a0c14; box-shadow: 0 0 10px rgba(255,215,0,.3); }
.rank-2 { background: linear-gradient(135deg, #c0c0c0, #888); color: #0a0c14; }
.rank-3 { background: linear-gradient(135deg, #cd7f32, #8b4513); color: #fff; }
.rank-default { background: var(--border-mid); color: var(--text-muted); }

/* ─── ACCOUNT PAGE ─── */
.account-page { padding: 3rem 0 5rem; position: relative; z-index: 2; }
.account-header {
  display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem;
  padding: 1.75rem; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.account-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700; color: #0a0c14;
  font-family: var(--font-deco); flex-shrink: 0;
  box-shadow: 0 0 20px rgba(212,168,67,.2);
}
.account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.account-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.account-section-title {
  font-family: var(--font-display); font-size: .9rem; color: var(--gold);
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--border);
  background: rgba(10,14,23,.3); display: flex; align-items: center; gap: .5rem;
}
.account-section-body { padding: 1.5rem; }
.char-card {
  background: var(--bg-deep); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem; margin-bottom: .75rem; transition: all var(--transition);
}
.char-card:hover { border-color: rgba(212,168,67,.2); }
.char-name { font-family: var(--font-display); font-size: 1rem; color: var(--gold); margin-bottom: .35rem; }
.char-stats { display: flex; gap: 1rem; flex-wrap: wrap; }
.char-stat { font-size: .8rem; color: var(--text-dim); }
.char-stat strong { color: var(--text-muted); }

/* ─── FORUM ─── */
.forum-header {
  padding: 3.5rem 0 2rem;
  background: radial-gradient(ellipse at center top, rgba(212,168,67,.05) 0%, transparent 60%);
  position: relative; z-index: 2;
}
.forum-main-title {
  font-family: var(--font-deco); font-size: 2.2rem; font-weight: 700;
  color: var(--gold); margin-bottom: .35rem; text-shadow: 0 0 20px rgba(212,168,67,.15);
}
.forum-main-desc { color: var(--text-muted); font-size: .95rem; }
.forum-stats-bar {
  display: flex; gap: .5rem; margin-top: .75rem;
  font-size: .82rem; color: var(--text-dim); align-items: center;
}
.forum-breadcrumb {
  display: flex; align-items: center; gap: .5rem; margin-bottom: 1.25rem;
  font-size: .82rem; color: var(--text-dim);
}
.forum-breadcrumb a { color: var(--text-muted); }
.forum-breadcrumb a:hover { color: var(--gold); }
.forum-categories { display: flex; flex-direction: column; gap: .6rem; }
.forum-cat-row {
  display: grid; grid-template-columns: 52px 1fr 180px 200px;
  align-items: center; gap: 1rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  transition: all var(--transition); text-decoration: none;
}
.forum-cat-row:hover {
  border-color: rgba(212,168,67,.2); box-shadow: var(--shadow-gold);
  transform: translateX(5px); background: var(--bg-card-hover);
}
.forum-cat-icon { font-size: 2rem; text-align: center; }
.forum-cat-name { font-family: var(--font-display); font-size: 1rem; color: var(--gold); margin-bottom: .2rem; }
.forum-cat-desc { font-size: .83rem; color: var(--text-dim); }
.forum-cat-counts { display: flex; gap: 1.75rem; }
.forum-count-item { text-align: center; }
.forum-count-num { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text); }
.forum-count-label { font-size: .7rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .05em; }
.forum-cat-last { min-width: 0; }
.forum-last-title { font-size: .83rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.forum-last-meta { font-size: .75rem; color: var(--text-dim); margin-top: .15rem; }
.forum-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border);
}
.forum-toolbar-info { font-size: .83rem; color: var(--text-dim); }
.forum-topic-list { display: flex; flex-direction: column; gap: .45rem; }
.forum-topic-row {
  display: grid; grid-template-columns: 38px 1fr 140px 160px;
  align-items: center; gap: 1rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  transition: all var(--transition); text-decoration: none;
}
.forum-topic-row:hover { border-color: rgba(212,168,67,.15); background: var(--bg-card-hover); }
.forum-topic-row.pinned { border-left: 3px solid var(--gold); background: rgba(212,168,67,.02); }
.forum-topic-icon { font-size: 1.1rem; text-align: center; }
.forum-topic-title { font-size: .92rem; font-weight: 600; color: var(--text); margin-bottom: .15rem; transition: color var(--transition); }
.forum-topic-row:hover .forum-topic-title { color: var(--gold); }
.forum-topic-meta { font-size: .78rem; color: var(--text-dim); }
.forum-topic-stats { display: flex; gap: 1.25rem; }
.forum-topic-last { min-width: 0; }
.forum-empty {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 4rem; text-align: center; color: var(--text-dim); font-size: .95rem;
}
.forum-empty a { color: var(--gold); }
.forum-pagination { display: flex; justify-content: center; gap: .4rem; margin-top: 1.75rem; }
.forum-page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 .6rem;
  border-radius: var(--radius); border: 1px solid var(--border);
  font-size: .85rem; font-weight: 600; color: var(--text-muted);
  background: var(--bg-card); transition: all var(--transition);
}
.forum-page-btn:hover, .forum-page-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(212,168,67,.08); }
.forum-topic-page-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold); margin-bottom: .35rem; line-height: 1.3; }
.forum-topic-page-meta { font-size: .82rem; color: var(--text-dim); }
.forum-posts { display: flex; flex-direction: column; gap: 1rem; }
.forum-post-card {
  display: grid; grid-template-columns: 155px 1fr;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: border-color var(--transition);
}
.forum-post-card.op { border-color: rgba(212,168,67,.2); }
.forum-post-sidebar {
  background: rgba(6,9,18,.5); padding: 1.25rem 1rem;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  border-right: 1px solid var(--border);
}
.forum-post-avatar {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; color: #0a0c14;
  font-family: var(--font-deco); box-shadow: 0 0 12px rgba(212,168,67,.15);
}
.forum-post-username { font-weight: 600; color: var(--gold); font-size: .88rem; text-align: center; }
.forum-post-role { font-size: .7rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .05em; }
.forum-post-user-stats { font-size: .72rem; color: var(--text-dim); text-align: center; }
.forum-post-body { padding: 1.25rem 1.5rem; }
.forum-post-date { font-size: .78rem; color: var(--text-dim); margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.forum-post-content { font-size: .93rem; color: var(--text); line-height: 1.75; word-wrap: break-word; }
.forum-reply-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; margin-top: 1.5rem; }
.forum-reply-title { font-family: var(--font-display); font-size: 1rem; color: var(--gold); margin-bottom: 1rem; }
.forum-textarea { min-height: 130px; resize: vertical; font-family: var(--font-body); }

/* ─── DOWNLOAD PAGE ─── */
.download-page { padding: 3rem 0; position: relative; z-index: 2; }
.download-page > h1 { font-family: var(--font-deco); font-size: 2.2rem; color: var(--gold); margin-bottom: .75rem; text-align: center; }
.download-page > p { text-align: center; color: var(--text-muted); font-size: 1rem; max-width: 700px; margin: 0 auto 3rem; }
.download-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.dl-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.dl-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.dl-card:hover { border-color: rgba(212,168,67,.2); box-shadow: var(--shadow-gold); transform: translateY(-5px); }
.dl-card:hover::before { opacity: 1; }
.dl-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold-light); margin-bottom: .75rem; }
.dl-card p { color: var(--text-muted); font-size: .88rem; margin-bottom: 1.5rem; min-height: 44px; }
.step-list { max-width: 800px; margin: 0 auto; }
.step-list > h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); margin-bottom: 2rem; text-align: center; }
.step {
  display: flex; gap: 1.5rem; margin-bottom: 1.25rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem; transition: all var(--transition);
}
.step:hover { border-color: rgba(212,168,67,.15); box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.step-num {
  flex-shrink: 0; width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-deco); font-size: 1.2rem; font-weight: 700; color: #0a0c14;
  box-shadow: 0 4px 12px rgba(212,168,67,.2);
}
.step-text h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold-light); margin-bottom: .4rem; }
.step-text p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }
.step-text code { background: var(--bg-input); padding: .15rem .5rem; border-radius: 4px; color: var(--gold); font-size: .85rem; border: 1px solid var(--border); }

/* ─── FOOTER ─── */
/* HTML class="site-footer" — her iki seçici destekleniyor */
.footer, .site-footer {
  border-top: 1px solid var(--border); background: rgba(6,9,18,.8);
  padding: 3.5rem 0 1.5rem; margin-top: 4rem; position: relative; z-index: 2;
  clear: both; width: 100%; box-sizing: border-box;
}
.footer::before, .site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,.3), transparent);
}
/* footer-grid (eski) ve footer-top (yeni HTML) her ikisi de destekleniyor */
.footer-grid, .footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-brand, .footer-brand-name {
  font-family: var(--font-deco); font-size: 1.2rem; color: var(--gold); margin-bottom: .6rem;
}
.footer-desc, .footer-brand-desc {
  color: var(--text-dim); font-size: .88rem; line-height: 1.6; max-width: 280px; margin-bottom: 1.25rem;
}
.footer-server-ip { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; }
.footer-ip-label { font-size: .8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .05em; }
.footer-server-ip code {
  background: var(--bg-input); padding: .1rem .4rem; border-radius: 4px;
  color: var(--gold); border: 1px solid var(--border); font-size: .82rem;
}
.footer h4, .footer-col-title {
  font-family: var(--font-display); font-size: .88rem; color: var(--gold);
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700;
}
.footer-info, .footer-links { list-style: none; padding: 0; margin: 0; }
.footer-info li, .footer-links li { font-size: .84rem; color: var(--text-dim); margin-bottom: .5rem; }
.footer-info code { background: var(--bg-input); padding: .1rem .4rem; border-radius: 4px; color: var(--gold); border: 1px solid var(--border); font-size: .82rem; }
.footer-links a { color: var(--text-dim); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p, .footer-bottom span { font-size: .78rem; color: var(--text-dim); }

/* ─── ANIMATIONS ─── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

/* ─── YÖNETIM ─── */
.admin-page { padding: 2rem 0 4rem; position: relative; z-index: 2; }
.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border);
}
.admin-title { font-family: var(--font-deco); font-size: 1.8rem; color: var(--gold); }
.admin-nav { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.admin-nav-link {
  padding: .5rem 1rem; border-radius: var(--radius);
  border: 1px solid var(--border); font-size: .85rem;
  color: var(--text-muted); transition: all var(--transition);
  font-family: var(--font-display);
}
.admin-nav-link:hover, .admin-nav-link.active {
  border-color: var(--gold); color: var(--gold); background: rgba(212,168,67,.06);
}
.admin-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.5rem;
}
.admin-card-header {
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--border);
  background: rgba(10,14,23,.3); display: flex; align-items: center;
  justify-content: space-between;
}
.admin-card-title { font-family: var(--font-display); font-size: .95rem; color: var(--gold); }
.admin-card-body { padding: 1.5rem; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  padding: .6rem 1rem; font-size: .72rem; font-family: var(--font-display);
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim);
  text-align: left; border-bottom: 1px solid var(--border);
}
.admin-table td { padding: .75rem 1rem; font-size: .86rem; color: var(--text-muted); border-bottom: 1px solid rgba(26,37,64,.4); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,.02); }

/* Status badges */
.badge-status {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .2rem .65rem; border-radius: 999px; font-size: .72rem; font-weight: 600;
}
.badge-active { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25); color: var(--green); }
.badge-banned { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.25); color: #fca5a5; }
.badge-pending { background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.2); color: #fcd34d; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; width: 100%;
    position: absolute; top: 100%; left: 0;
    background: rgba(6,9,18,.98); border-bottom: 1px solid var(--border);
    padding: .5rem 1rem 1rem; backdrop-filter: blur(16px);
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; padding: .7rem .9rem; }
  .hero { padding: 4rem 0 3.5rem; }
  .hero-title { font-size: 2.4rem; }
  .scroll-indicator { display: none; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid, .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .news-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .feature-boxes { grid-template-columns: 1fr; }
  .download-cards { grid-template-columns: 1fr; }
  .step { flex-direction: column; align-items: center; text-align: center; }
  .step-num { margin-bottom: .75rem; }
  .form-container { padding: 1.75rem 1.5rem; }
  .account-header { flex-direction: column; text-align: center; }
  .account-grid { grid-template-columns: 1fr; }
  .forum-cat-row { grid-template-columns: 36px 1fr; }
  .forum-cat-counts, .forum-cat-last { display: none; }
  .forum-topic-row { grid-template-columns: 28px 1fr; }
  .forum-topic-stats, .forum-topic-last { display: none; }
  .forum-post-card { grid-template-columns: 1fr; }
  .forum-post-sidebar { flex-direction: row; justify-content: flex-start; border-right: none; border-bottom: 1px solid var(--border); padding: .75rem 1rem; }
  .forum-post-avatar { width: 36px; height: 36px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .stats-strip { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-badges { gap: .4rem; }
  .badge { font-size: .78rem; padding: .35rem .85rem; }
}

/* ═══════════════════════════════════════════════════════
   UO SYMBOLS & DECORATIVE ELEMENTS
   Ankh hero, virtue runes, britannia textures
═══════════════════════════════════════════════════════ */

/* ─── HERO: Ankh arka plan ─── */
.hero {
  position: relative;
  padding: 6rem 0 5rem;
  text-align: center;
  overflow: hidden;
  z-index: 2;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Ankh SVG arka plan */
.hero::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 520px; height: 520px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 260'%3E%3Cdefs%3E%3CradialGradient id='ag' cx='50%25' cy='38%25' r='55%25'%3E%3Cstop offset='0%25' stop-color='%23d4a843' stop-opacity='0.22'/%3E%3Cstop offset='100%25' stop-color='%23d4a843' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Cellipse cx='100' cy='70' rx='46' ry='52' stroke='%23d4a843' stroke-width='8' fill='none' stroke-opacity='0.13'/%3E%3Cellipse cx='100' cy='70' rx='28' ry='32' stroke='%23d4a843' stroke-width='3' fill='none' stroke-opacity='0.07'/%3E%3Cline x1='100' y1='122' x2='100' y2='260' stroke='%23d4a843' stroke-width='8' stroke-opacity='0.13'/%3E%3Cline x1='28' y1='168' x2='172' y2='168' stroke='%23d4a843' stroke-width='8' stroke-opacity='0.13'/%3E%3Cellipse cx='100' cy='70' rx='46' ry='52' fill='url(%23ag)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  animation: ankh-bg-pulse 8s ease-in-out infinite;
}

@keyframes ankh-bg-pulse {
  0%, 100% { opacity: .9; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;  transform: translate(-50%, -50%) scale(1.04); }
}

/* Virtue sekizgen halka */
.hero-virtue-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  pointer-events: none; z-index: 0;
  animation: virtue-spin 120s linear infinite;
}

@keyframes virtue-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Virtue renk noktaları — 8 erdem */
.virtue-orb {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 12px currentColor, 0 0 24px currentColor;
  animation: orb-twinkle 3s ease-in-out infinite;
}
@keyframes orb-twinkle {
  0%,100% { opacity: .5; transform: scale(1); }
  50%     { opacity: 1;  transform: scale(1.5); }
}

/* Sekiz virtue konumu — dairesel */
.virtue-orb:nth-child(1) { top: 0%;    left: 50%;   background:#4a90d9; color:#4a90d9; animation-delay:0s;    } /* Honesty */
.virtue-orb:nth-child(2) { top: 14.6%; left: 85.4%; background:#7b4fa6; color:#7b4fa6; animation-delay:.37s; } /* Compassion */
.virtue-orb:nth-child(3) { top: 50%;   left: 100%;  background:#c0392b; color:#c0392b; animation-delay:.75s; } /* Valor */
.virtue-orb:nth-child(4) { top: 85.4%; left: 85.4%; background:#27ae60; color:#27ae60; animation-delay:1.1s; } /* Justice */
.virtue-orb:nth-child(5) { top: 100%;  left: 50%;   background:#e67e22; color:#e67e22; animation-delay:1.5s; } /* Sacrifice */
.virtue-orb:nth-child(6) { top: 85.4%; left: 14.6%; background:#2980b9; color:#2980b9; animation-delay:1.87s;} /* Honor */
.virtue-orb:nth-child(7) { top: 50%;   left: 0%;    background:#8e44ad; color:#8e44ad; animation-delay:2.25s;} /* Spirituality */
.virtue-orb:nth-child(8) { top: 14.6%; left: 14.6%; background:#c0a060; color:#c0a060; animation-delay:2.6s; } /* Humility */

/* İç dönen çember */
.hero-rune-inner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px dashed rgba(212,168,67,.08);
  pointer-events: none; z-index: 0;
  animation: virtue-spin 60s linear infinite reverse;
}

/* Rune yazısı çemberi */
.hero-rune-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  pointer-events: none; z-index: 0;
  opacity: .06;
  animation: virtue-spin 200s linear infinite;
}

/* ─── NAVBAR Ankh ikonu ─── */
.nav-brand-ankh {
  display: inline-block;
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(212,168,67,.5));
  animation: icon-pulse 3s ease-in-out infinite;
  width: 24px; flex-shrink: 0;
}

/* ─── SECTION DECORATIONS ─── */

/* Bölüm başlığı yanındaki UO süslemesi */
.section-title {
  position: relative;
  display: flex; align-items: center;
  justify-content: center; gap: .75rem;
  font-family: var(--font-deco);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold);
  margin-bottom: 2rem;
  text-shadow: 0 0 30px rgba(212,168,67,.2);
}

.section-title::before,
.section-title::after {
  content: '';
  flex: 1; max-width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,.4), transparent);
}

/* ─── İNFO CARD Virtue renkleri ─── */
.info-card:nth-child(1) { border-top: 2px solid #4a90d9; }  /* Honesty */
.info-card:nth-child(2) { border-top: 2px solid #c0392b; }  /* Valor */
.info-card:nth-child(3) { border-top: 2px solid #27ae60; }  /* Justice */
.info-card:nth-child(4) { border-top: 2px solid #c0a060; }  /* Humility */
.info-card:nth-child(5) { border-top: 2px solid #8e44ad; }  /* Spirituality */
.info-card:nth-child(6) { border-top: 2px solid #e67e22; }  /* Sacrifice */

/* ─── FOOTER Ankh watermark ─── */
.footer, .site-footer {
  position: relative;
  overflow: hidden;
}

.footer::after, .site-footer::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 390px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 260'%3E%3Cellipse cx='100' cy='70' rx='46' ry='52' stroke='%23d4a843' stroke-width='6' fill='none' stroke-opacity='1'/%3E%3Cline x1='100' y1='122' x2='100' y2='260' stroke='%23d4a843' stroke-width='6'/%3E%3Cline x1='28' y1='168' x2='172' y2='168' stroke='%23d4a843' stroke-width='6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .03;
  pointer-events: none;
}

/* ─── SERVER STAT BLOCK Ankh ikonu ─── */
.server-stat-header--runuo .server-stat-icon::after {
  content: '';
}

/* ─── VIRTUE STRIP (stats altı) ─── */
.virtue-strip {
  background: rgba(6,9,18,.6);
  border-top: 1px solid rgba(212,168,67,.06);
  border-bottom: 1px solid rgba(212,168,67,.06);
  padding: .85rem 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.virtue-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.virtue-pill {
  display: flex; align-items: center; gap: .45rem;
  padding: .3rem 1.1rem;
  border-right: 1px solid rgba(212,168,67,.08);
  font-family: var(--font-display);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  transition: color .25s;
  white-space: nowrap;
}
.virtue-pill:last-child { border-right: none; }
.virtue-pill:hover { color: rgba(255,255,255,.6); }

.virtue-pip {
  width: 6px; height: 6px; border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px currentColor;
}

/* ─── BRITANNIA MAP section divider ─── */
.map-divider {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212,168,67,.15) 20%,
    rgba(212,168,67,.4) 50%,
    rgba(212,168,67,.15) 80%,
    transparent 100%
  );
  margin: 0;
  overflow: visible;
}

.map-divider::before {
  content: '✦';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-dark);
  color: rgba(212,168,67,.5);
  font-size: .7rem;
  padding: 0 .75rem;
  letter-spacing: .1em;
}

/* ─── Floating UO symbols — decorative corners ─── */
.uo-corner-tl,
.uo-corner-br {
  position: absolute;
  pointer-events: none;
  opacity: .04;
}

.uo-corner-tl { top: 2rem; left: 2rem; }
.uo-corner-br { bottom: 2rem; right: 2rem; transform: rotate(180deg); }

/* ─── Haberler kartı sol çizgi ─── */
.news-card {
  border-left: 3px solid transparent;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.news-card:nth-child(1):hover { border-left-color: #4a90d9; }
.news-card:nth-child(2):hover { border-left-color: #c0392b; }
.news-card:nth-child(3):hover { border-left-color: #27ae60; }
.news-card:nth-child(4):hover { border-left-color: #8e44ad; }

/* ─── Scroll indicator geliştirildi ─── */
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(212,168,67,.3);
  border-radius: 11px;
  display: flex; justify-content: center; padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 7px;
  background: rgba(212,168,67,.5);
  border-radius: 2px;
  animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ─── Hero içerik z-index düzelt ─── */
.hero-content,
.hero-badges,
.hero-actions,
.hero-eyebrow,
.hero-title,
.hero-subtitle,
.hero-divider,
.scroll-indicator { position: relative; z-index: 2; }

/* ─── Navbar Ankh SVG ─── */
.nav-brand-icon {
  display: inline-flex; align-items: center;
}


/* ── Staff Online Badge ── */
.badge-staff {
  border-color: rgba(139,92,246,.4) !important;
  color: #a78bfa !important;
  background: rgba(139,92,246,.08) !important;
}
.staff-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 0 2px rgba(139,92,246,.3);
  display: inline-block; vertical-align: middle;
  animation: pulse-staff 2s ease-in-out infinite;
  margin-right: .4rem;
}
@keyframes pulse-staff {
  0%,100% { box-shadow: 0 0 0 2px rgba(139,92,246,.3); }
  50%      { box-shadow: 0 0 0 5px rgba(139,92,246,.1); }
}
/* ════════════════════════════════════════════════════════════════
   WIKI SİSTEMİ
════════════════════════════════════════════════════════════════ */

/* Hero */
.wiki-hero {
  background: linear-gradient(180deg, rgba(212,168,67,.07) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
}
.wiki-hero-inner { max-width: 700px; }
.wiki-hero-title {
  font-family: var(--font-display); font-size: 2rem; color: var(--gold);
  margin-bottom: .4rem;
}
.wiki-hero-subtitle { color: var(--text-muted); font-size: .95rem; margin-bottom: 1.25rem; }
.wiki-search-form {
  display: flex; gap: .5rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: .3rem .3rem .3rem .9rem;
  transition: border-color .2s;
}
.wiki-search-form:focus-within { border-color: rgba(212,168,67,.4); }
.wiki-search-input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: .9rem;
}
.wiki-search-btn {
  background: var(--gold); border: none; cursor: pointer;
  color: #0a0e17; width: 36px; height: 36px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.wiki-search-btn:hover { background: var(--gold-light, #f5d98a); }

/* Layout */
.wiki-container { padding-top: 1.5rem; padding-bottom: 3rem; }
.wiki-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.75rem;
  align-items: start;
}

/* Sidebar */
.wiki-sidebar { position: sticky; top: 5rem; }
.wiki-sidebar-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1rem;
}
.wiki-sidebar-title {
  font-family: var(--font-display); font-size: .8rem;
  color: var(--gold); letter-spacing: .06em; text-transform: uppercase;
  padding: .7rem 1rem; border-bottom: 1px solid var(--border);
  background: rgba(212,168,67,.05);
}
.wiki-cat-nav { padding: .4rem 0; }
.wiki-cat-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .45rem 1rem; color: var(--text-muted);
  font-size: .84rem; transition: background .15s, color .15s;
  text-decoration: none;
}
.wiki-cat-item:hover, .wiki-cat-item.active { background: rgba(212,168,67,.08); color: var(--gold); }
.wiki-cat-icon { font-size: 1rem; flex-shrink: 0; }
.wiki-cat-label { flex: 1; }
.wiki-cat-count {
  background: rgba(255,255,255,.07); color: var(--text-dim);
  font-size: .68rem; padding: 1px 6px; border-radius: 999px;
}
.wiki-cat-pages { padding: .4rem 0; }
.wiki-cat-page-link {
  display: block; padding: .4rem 1rem;
  font-size: .82rem; color: var(--text-muted);
  text-decoration: none; transition: color .15s, background .15s;
}
.wiki-cat-page-link:hover { color: var(--gold); background: rgba(212,168,67,.06); }
.wiki-cat-page-link.active { color: var(--gold); font-weight: 600; }
.wiki-cat-page-link.all-pages { color: var(--text-dim); font-size: .78rem; border-bottom: 1px solid var(--border); margin-bottom: .25rem; }

/* Ana sayfa kategori kartları */
.wiki-cats-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .85rem; margin-bottom: 2rem;
}
.wiki-cat-card {
  display: flex; align-items: center; gap: .75rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: .9rem 1rem;
  text-decoration: none; transition: border-color .2s, background .2s, transform .15s;
}
.wiki-cat-card:hover {
  border-color: rgba(212,168,67,.35); background: rgba(212,168,67,.05);
  transform: translateY(-2px);
}
.wiki-cat-card-icon { font-size: 1.6rem; flex-shrink: 0; }
.wiki-cat-card-info { flex: 1; min-width: 0; }
.wiki-cat-card-title { display: block; font-size: .88rem; font-weight: 600; color: var(--text); }
.wiki-cat-card-count { font-size: .73rem; color: var(--text-dim); }
.wiki-cat-card-arrow { color: var(--text-dim); flex-shrink: 0; opacity: .5; }

/* Son güncellenenler */
.wiki-section { margin-top: 1rem; }
.wiki-section-title {
  font-family: var(--font-display); font-size: 1rem;
  color: var(--gold); margin-bottom: .75rem;
  padding-bottom: .4rem; border-bottom: 1px solid var(--border);
}
.wiki-recent-list { display: flex; flex-direction: column; }
.wiki-recent-item {
  display: flex; align-items: center; gap: 1rem;
  padding: .55rem 0; border-bottom: 1px solid rgba(255,255,255,.04);
  text-decoration: none; transition: color .15s;
}
.wiki-recent-item:hover .wiki-recent-title { color: var(--gold); }
.wiki-recent-info { flex: 1; min-width: 0; }
.wiki-recent-title { display: block; font-size: .86rem; color: var(--text); }
.wiki-recent-cat { font-size: .72rem; color: var(--text-dim); }
.wiki-recent-date { font-size: .72rem; color: var(--text-dim); flex-shrink: 0; }

/* Kategori sayfa listesi */
.wiki-page-heading {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--gold); margin-bottom: 1.25rem;
}
.wiki-page-list { display: flex; flex-direction: column; gap: .75rem; }
.wiki-page-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1rem 1.25rem;
  text-decoration: none; transition: border-color .2s, background .2s;
}
.wiki-page-card:hover { border-color: rgba(212,168,67,.3); background: rgba(212,168,67,.03); }
.wiki-page-card-title { font-size: .95rem; font-weight: 600; color: var(--text); margin-bottom: .3rem; }
.wiki-page-card-excerpt { font-size: .82rem; color: var(--text-dim); line-height: 1.5; margin-bottom: .4rem; }
.wiki-page-card-meta { font-size: .7rem; color: var(--text-dim); }
.wiki-empty { color: var(--text-dim); padding: 2rem 0; text-align: center; }

/* Makale */
.wiki-breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: var(--text-dim); margin-bottom: 1.25rem;
}
.wiki-breadcrumb a { color: var(--text-dim); text-decoration: none; }
.wiki-breadcrumb a:hover { color: var(--gold); }
.wiki-breadcrumb span { color: var(--text-dim); }

.wiki-article-header { margin-bottom: 1.75rem; }
.wiki-article-title {
  font-family: var(--font-display); font-size: 1.9rem;
  color: var(--gold); margin-bottom: .6rem; line-height: 1.2;
}
.wiki-article-meta {
  display: flex; align-items: center; gap: 1rem;
  font-size: .78rem; color: var(--text-dim); flex-wrap: wrap;
}

/* Wiki içerik stilleri */
.wiki-content {
  color: var(--text-muted); line-height: 1.75; font-size: .93rem;
}
.wiki-content h1, .wiki-content h2, .wiki-content h3,
.wiki-content h4, .wiki-content h5, .wiki-content h6 {
  font-family: var(--font-display); color: var(--gold);
  margin: 1.75rem 0 .75rem; line-height: 1.3;
}
.wiki-content h1 { font-size: 1.6rem; }
.wiki-content h2 { font-size: 1.3rem; border-bottom: 1px solid var(--border); padding-bottom: .4rem; }
.wiki-content h3 { font-size: 1.1rem; color: var(--gold-light, #f5d98a); }
.wiki-content p  { margin-bottom: 1rem; }
.wiki-content ul, .wiki-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.wiki-content li { margin-bottom: .3rem; }
.wiki-content a  { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(212,168,67,.4); }
.wiki-content a:hover { text-decoration-color: var(--gold); }
.wiki-content strong { color: var(--text); font-weight: 700; }
.wiki-content em { color: var(--gold-light, #f5d98a); font-style: italic; }
.wiki-content code {
  background: rgba(255,255,255,.07); border: 1px solid var(--border);
  border-radius: 4px; padding: .1rem .4rem;
  font-size: .85em; color: #93c5fd; font-family: 'Courier New', monospace;
}
.wiki-content pre {
  background: rgba(6,9,18,.8); border: 1px solid var(--border);
  border-radius: 8px; padding: 1rem 1.25rem; overflow-x: auto;
  margin-bottom: 1rem;
}
.wiki-content pre code { background: none; border: none; padding: 0; font-size: .85rem; color: #e2e8f0; }
.wiki-content blockquote {
  border-left: 3px solid var(--gold); padding: .6rem 1rem;
  background: rgba(212,168,67,.05); border-radius: 0 8px 8px 0;
  color: var(--text-muted); margin-bottom: 1rem; font-style: italic;
}
.wiki-content hr { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.wiki-table-wrap { overflow-x: auto; margin-bottom: 1rem; }
.wiki-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.wiki-table th {
  background: rgba(212,168,67,.1); color: var(--gold);
  font-family: var(--font-display); font-size: .8rem; letter-spacing: .04em;
  padding: .6rem .85rem; text-align: left; border: 1px solid var(--border);
}
.wiki-table td { padding: .55rem .85rem; border: 1px solid var(--border); color: var(--text-muted); }
.wiki-table tr:hover td { background: rgba(212,168,67,.04); }

/* Responsive */
@media (max-width: 900px) {
  .wiki-layout { grid-template-columns: 1fr; }
  .wiki-sidebar { position: static; }
}
@media (max-width: 600px) {
  .wiki-cats-grid { grid-template-columns: 1fr; }
  .wiki-hero-title { font-size: 1.5rem; }
}
