/* ============================================================
   CONGRESS — Discord Server Wiki
   Palette: ink navy / parchment / brass gold / record red
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,900&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --ink:        #12151c;
  --ink-raised: #1a1f2a;
  --ink-card:   #1e2430;
  --ink-line:   #2c3342;

  --parchment:  #ede6d6;
  --parchment-dim: #d9d0ba;

  --brass:      #c9a227;
  --brass-bright: #e0bc4a;
  --brass-dim:  #8a7020;

  --record-red: #8b2635;
  --record-red-bright: #b13648;

  --ink-text:   #cdd3e0;
  --ink-text-dim: #8891a3;

  --radius: 3px;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink-text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* subtle paper-grain texture on the base background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image:
    repeating-linear-gradient(0deg, #fff 0px, transparent 1px, transparent 2px),
    repeating-linear-gradient(90deg, #fff 0px, transparent 1px, transparent 2px);
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--brass-dim); color: var(--parchment); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ink-line); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--brass-dim); }

/* ---------- layout shell ---------- */

.shell {
  display: grid;
  grid-template-columns: 340px 1fr;   /* 220px yerine 340px */
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* ---------- sidebar ---------- */

.sidebar {
  background: var(--ink-raised);
  border-right: 1px solid var(--ink-line);
  padding: 22px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.sidebar-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 20px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--ink-line);
}

.sidebar-mark .seal {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.sidebar-mark .wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--parchment);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.sidebar-mark .wordmark span {
  display: block;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--brass);
  letter-spacing: 0.18em;
  margin-top: 2px;
}

.nav-group {
  margin-bottom: 4px;
}

.nav-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--ink-text-dim);
  text-transform: uppercase;
  padding: 14px 20px 6px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 20px;
  font-size: 0.86rem;
  color: var(--ink-text);
  border-left: 2px solid transparent;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.nav-item:hover {
  background: rgba(201, 162, 39, 0.07);
  color: var(--parchment);
}

.nav-item.active {
  border-left-color: var(--brass);
  background: rgba(201, 162, 39, 0.1);
  color: var(--brass-bright);
  font-weight: 600;
}

.nav-item .ico {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.85;
}

.sidebar-foot {
  margin-top: auto;
  padding: 16px 20px 4px;
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--ink-text-dim);
  letter-spacing: 0.06em;
  border-top: 1px solid var(--ink-line);
}

/* ---------- main column ---------- */

.main {
  min-width: 0;
}

/* masthead / hero banner */

.masthead {
  position: relative;
  height: 190px;
  overflow: hidden;
  border-bottom: 1px solid var(--brass-dim);
  background:
    radial-gradient(ellipse 900px 400px at 25% 0%, rgba(201,162,39,0.16), transparent 60%),
    linear-gradient(160deg, #1c2130 0%, #12151c 70%);
}

.masthead-seal-bg {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 340px;
  height: 340px;
  opacity: 0.07;
}

.masthead-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
  max-width: 1200px;
}

.masthead-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.masthead-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--parchment);
  margin: 0;
  letter-spacing: -0.01em;
}

.masthead-sub {
  font-size: 0.95rem;
  color: var(--ink-text-dim);
  margin-top: 8px;
  max-width: 560px;
}

/* breadcrumb bar under masthead */

.crumbbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  border-bottom: 1px solid var(--ink-line);
  background: var(--ink-raised);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

.crumbbar .crumbs a { color: var(--brass); }
.crumbbar .crumbs a:hover { text-decoration: underline; }
.crumbbar .crumbs span { color: var(--ink-text-dim); }

.crumb-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  padding: 3px 9px;
  border: 1px solid var(--ink-line);
  border-radius: 20px;
  color: var(--ink-text-dim);
}

/* content padding wrapper */

.content {
  max-width: 1200px;
  padding: 36px 40px 100px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  align-items: start;
}

@media (max-width: 980px) {
  .content-grid { grid-template-columns: 1fr; }
  .shell { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

/* ---------- typographic elements ---------- */

.page-h1 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--parchment);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-h1 .rec-no {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--brass);
  border: 1px solid var(--brass-dim);
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.08em;
}

.section-h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--parchment);
  margin: 34px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink-line);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.section-h2 .no {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--brass);
  font-weight: 500;
}

.section-h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brass-bright);
  margin: 22px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

p { color: var(--ink-text); }

.lede {
  font-size: 1.02rem;
  color: var(--ink-text);
  border-left: 3px solid var(--brass);
  background: rgba(201,162,39,0.05);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 0 0 26px;
}

.placeholder-note {
  font-size: 0.78rem;
  color: var(--ink-text-dim);
  font-style: italic;
}

/* ---------- fill-in blocks ---------- */

.fillbox {
  border: 1.5px dashed var(--ink-line);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 12px 0 20px;
  background: rgba(255,255,255,0.015);
  position: relative;
}

.fillbox::before {
  content: attr(data-label);
  position: absolute;
  top: -9px;
  left: 14px;
  background: var(--ink);
  padding: 0 8px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
}

.fillbox .hint {
  color: var(--ink-text-dim);
  font-size: 0.85rem;
}

/* ---------- cards ---------- */

.card {
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
}

.card-head {
  padding: 12px 18px;
  border-bottom: 1px solid var(--ink-line);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--parchment);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-body { padding: 18px; }

/* homepage nav cards */

.nav-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
  margin: 20px 0 8px;
}

.nav-card {
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
  display: block;
  position: relative;
  overflow: hidden;
}

.nav-card::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--brass);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.18s ease;
}

.nav-card:hover {
  border-color: var(--brass-dim);
  transform: translateY(-2px);
  background: #212739;
}

.nav-card:hover::after { transform: scaleY(1); }

.nav-card .nc-eyebrow {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--brass);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.nav-card .nc-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--parchment);
  margin-bottom: 6px;
  display: block;
}

.nav-card .nc-desc {
  font-size: 0.83rem;
  color: var(--ink-text-dim);
}

/* ---------- side rail (profile-card style, VALORANT-wiki inspired) ---------- */

.rail-card {
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 22px;
}

.rail-card-top {
  background: linear-gradient(120deg, var(--record-red), #6f1c28);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--parchment);
  font-size: 1rem;
}

.rail-tabs {
  display: flex;
  border-bottom: 1px solid var(--ink-line);
  font-size: 0.72rem;
}

.rail-tab {
  padding: 9px 12px;
  color: var(--ink-text-dim);
  border-bottom: 2px solid transparent;
}

.rail-tab.active {
  color: var(--brass-bright);
  border-bottom-color: var(--brass);
}

.rail-portrait {
  padding: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160px;
  background:
    radial-gradient(ellipse at center, rgba(201,162,39,0.07), transparent 70%);
}

.rail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.rail-table td {
  padding: 9px 16px;
  border-bottom: 1px solid var(--ink-line);
  vertical-align: top;
}

.rail-table td:first-child {
  color: var(--brass-bright);
  font-weight: 600;
  width: 40%;
}

.rail-table tr:last-child td { border-bottom: none; }

/* ---------- badges / rank chips ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.badge-brass { background: rgba(201,162,39,0.14); color: var(--brass-bright); border: 1px solid var(--brass-dim); }
.badge-red   { background: rgba(139,38,53,0.18); color: #e08a94; border: 1px solid var(--record-red); }
.badge-dim   { background: rgba(255,255,255,0.04); color: var(--ink-text-dim); border: 1px solid var(--ink-line); }

/* ---------- tables (rules, roles, faq etc) ---------- */

table.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 26px;
  font-size: 0.88rem;
}

.data-table th {
  text-align: left;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 10px 14px;
  border-bottom: 2px solid var(--brass-dim);
}

.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--ink-line);
  color: var(--ink-text);
}

.data-table tr:hover td { background: rgba(255,255,255,0.015); }

/* ---------- timeline ---------- */

.timeline {
  position: relative;
  padding-left: 26px;
  margin: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(var(--brass-dim), var(--ink-line));
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--brass);
}

.timeline-item .t-date {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--brass);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.timeline-item .t-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--parchment);
  margin-bottom: 4px;
}

/* ---------- gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin: 16px 0;
}

.gallery-slot {
  aspect-ratio: 1;
  border: 1.5px dashed var(--ink-line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-text-dim);
  font-size: 0.72rem;
  text-align: center;
  padding: 10px;
  background: rgba(255,255,255,0.015);
}

/* ---------- trivia stat cards ---------- */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 16px 0 26px;
}

.stat-card {
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: left;
}

.stat-card .stat-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px;
}

.stat-card .stat-value {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--parchment);
}

.stat-card .stat-sub {
  font-size: 0.75rem;
  color: var(--ink-text-dim);
  margin-top: 4px;
}

/* ---------- contents box (right-aligned mini toc, wiki style) ---------- */

.toc-box {
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 0 0 26px;
  font-size: 0.85rem;
  max-width: 320px;
}

.toc-box .toc-title {
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 8px;
  font-family: var(--serif);
}

.toc-box ol {
  margin: 0;
  padding-left: 18px;
}

.toc-box li { margin-bottom: 5px; }
.toc-box a:hover { color: var(--brass-bright); }

/* ---------- quote block (Fandom-style pull quote) ---------- */

.pull-quote {
  display: flex;
  gap: 14px;
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-left: 4px solid var(--record-red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 22px;
  margin: 0 0 24px;
}

.pull-quote .qmark {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--record-red);
  line-height: 1;
  flex-shrink: 0;
}

.pull-quote .qtext {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--parchment);
}

.pull-quote .qsource {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  color: var(--ink-text-dim);
}

/* ---------- buttons / small utility ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--brass-dim);
  color: var(--brass-bright);
  background: rgba(201,162,39,0.08);
}

.btn:hover { background: rgba(201,162,39,0.16); }

.divider {
  height: 1px;
  background: var(--ink-line);
  margin: 30px 0;
  border: none;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 700px) {
  .two-col { grid-template-columns: 1fr; }
  .content { padding: 26px 18px 80px; }
  .masthead-inner { padding: 0 20px; }
  .crumbbar { padding: 12px 20px; }
}

/* ========== CONGRESS WIKI ROSTER GRID ========== */

.roster-section {
  border: 1px solid var(--brass-dim);
  background: var(--ink-line);
  max-width: 800px; /* Tablonun sayfada çok fazla uzamasını engeller */
  margin: 0 auto 40px auto; /* Tabloyu sayfanın tam ortasına hizalar */
  border-radius: var(--radius);
  overflow: hidden;
}

.roster-title {
  background: var(--ink-card);
  color: var(--brass-bright);
  text-align: center;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.2rem;
  padding: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--brass-dim);
}

.roster-grid {
  display: flex; 
  flex-wrap: wrap;
  justify-content: center; 
  gap: 1px; 
  background: var(--ink-line);
}

.roster-card {
  width: 115px; 
  background: var(--ink);
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.roster-card:hover {
  background: rgba(201, 162, 39, 0.05); 
}

.roster-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--ink-line);
}

.roster-info {
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  flex-grow: 1;
}

.roster-role {
  color: var(--ink-text-dim);
  font-family: var(--sans);
  font-size: 0.65rem; 
  font-weight: 700;
  margin-bottom: 4px;
}

.roster-name {
  color: var(--parchment);
  font-family: var(--sans);
  font-size: 0.75rem; 
  font-weight: 800;
  text-align: center;
  width: 100%;
  word-break: break-word; 
  line-height: 1.3; 
  padding: 0 4px; 
}

/* ========== WIKI INFOBOX (KARAKTER PROFİLİ) ========== */

.wiki-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

@media (max-width: 850px) {
  .wiki-layout { flex-direction: column-reverse; }
}

.wiki-main-content {
  flex: 1; 
}

.wiki-infobox {
  width: 340px;
  background: var(--ink-card);
  border: 2px solid var(--brass-dim);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.infobox-header {
  background: var(--brass-dim);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem; 
  font-weight: 800;
  text-align: center;
  padding: 16px 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3; 
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65px; 
}

.infobox-image img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom: 2px solid var(--brass-dim);
}

.infobox-table {
  width: 100%;
  border-collapse: collapse;
}

.infobox-table th, 
.infobox-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--ink-line);
  font-size: 0.85rem;
}

.infobox-table th {
  width: 35%;
  background: rgba(0,0,0,0.2);
  color: var(--brass-bright);
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  text-align: left;
  vertical-align: top;
}

.infobox-table td {
  color: var(--parchment);
}

.role-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--brass-dim);
  color: var(--brass);
  padding: 3px 8px;
  margin: 2px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: var(--sans);
  word-break: break-word;
}

/* ========== VIP (TEŞEKKÜRLER) PROFİL TASARIMI ========== */

.vip-layout .wiki-infobox {
  border: 2px solid #ff73fa;
  background: linear-gradient(180deg, #1e2430 0%, #150a12 100%);
  box-shadow: 0 0 25px rgba(255, 115, 250, 0.2), 0 8px 24px rgba(0,0,0,0.8);
  position: relative;
}

/* Fotoğrafın arkasına dönen efsanevi neon aura */
.vip-layout .infobox-image {
  position: relative;
  z-index: 1;
}

.vip-layout .infobox-image::before {
  content: "";
  position: absolute;
  top: -10px; left: -10px; right: -10px; bottom: -10px;
  background: radial-gradient(circle, rgba(255,115,250,0.4) 0%, transparent 60%);
  z-index: -1;
}

.vip-layout .infobox-header {
  background: linear-gradient(135deg, #12151c, #1f111c);
  color: #ffbaff;
  border-bottom: 1px solid rgba(255, 115, 250, 0.3);
  text-shadow: 0 0 10px rgba(255, 115, 250, 0.4);
  letter-spacing: 0.15em;
  position: relative;
}

/* Header'ın altına ince parlak neon çizgi */
.vip-layout .infobox-header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, #ff73fa, transparent);
}

.vip-layout .infobox-image img {
  border-bottom: 2px solid rgba(255, 115, 250, 0.4);
}

.vip-layout .infobox-table th {
  background: rgba(255, 115, 250, 0.05);
  color: #ffbaff;
  border-bottom: 1px solid rgba(255, 115, 250, 0.15);
}

.vip-layout .infobox-table td {
  border-bottom: 1px solid rgba(255, 115, 250, 0.15);
}

.vip-layout .role-badge {
  background: rgba(255, 115, 250, 0.08);
  border: 1px solid rgba(255, 115, 250, 0.3);
  color: #ffbaff;
}

.vip-layout .page-h1 {
  text-shadow: 0 0 15px rgba(255, 115, 250, 0.3);
  background: linear-gradient(135deg, #ffffff, #ffbaff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vip-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 115, 250, 0.1);
  border: 1px solid #ff73fa;
  color: #ffbaff;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  box-shadow: 0 0 10px rgba(255, 115, 250, 0.2);
}

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.profile-badges .vip-tag {
  margin-bottom: 0;
}

.owner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(224, 188, 74, 0.2), rgba(201, 162, 39, 0.08));
  border: 1px solid var(--brass-bright);
  color: var(--brass-bright);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.22);
}

.roster-owner {
  color: var(--brass-bright);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 3px;
}

/* Sayfanın sağından ve solundan vuran devasa asimetrik Matrix / Cyberpunk ışıkları */
.vip-layout::before {
  content: "";
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 100% 20%, rgba(255, 115, 250, 0.06), transparent 45%),
    radial-gradient(circle at 0% 80%, rgba(161, 98, 232, 0.06), transparent 45%);
  z-index: 0;
  pointer-events: none;
}

.vip-layout {
  position: relative;
  z-index: 1;
}

/* ========== UNDER CONSTRUCTION / COMING SOON ========== */

.construction {
  position: relative;
  border: 2px dashed var(--brass-dim);
  border-radius: var(--radius);
  padding: 48px 30px 38px;
  text-align: center;
  margin: 30px 0;
  background:
    repeating-linear-gradient(45deg, rgba(201,162,39,0.035) 0 14px, rgba(255,255,255,0.012) 14px 28px);
}

.construction .c-tape {
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--brass);
  padding: 4px 0;
  border-radius: 0 0 0 0;
}

.construction .c-sub {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 18px 0 6px;
}

.construction .c-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--parchment);
  margin: 0 0 10px;
}

.construction .c-text {
  max-width: 540px;
  margin: 0 auto 18px;
  color: var(--ink-text-dim);
  font-size: 0.92rem;
}

.construction .c-tags {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  color: var(--brass-bright);
  border: 1px solid var(--brass-dim);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(201,162,39,0.08);
}