@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #080810;
  --bg-secondary: #0d0d1a;
  --bg-card: #10101e;
  --bg-card-hover: #16162a;
  --accent: #e8c14a;
  --accent-dim: rgba(232,193,74,0.15);
  --accent-glow: rgba(232,193,74,0.25);
  --accent-2: #f0a500;
  --text-1: #eeeef8;
  --text-2: #8888a8;
  --text-3: #44445a;
  --border: rgba(232,193,74,0.12);
  --border-h: rgba(232,193,74,0.45);
  --sidebar-w: 258px;
  --nav-h: 64px;
  --r: 12px;
  --r-sm: 7px;
  --r-lg: 18px;
  --shadow: 0 4px 30px rgba(0,0,0,0.5);
  --glow: 0 0 24px rgba(232,193,74,0.18);
  --grad: linear-gradient(135deg,#e8c14a,#f0a500);
  --grad-card: linear-gradient(145deg,#10101e,#16162a);
  --grad-bg: linear-gradient(135deg,#080810 0%,#12101e 50%,#080d18 100%);
  --ease: all 0.28s cubic-bezier(0.4,0,0.2,1);
}

[data-theme="light"] {
  --bg-primary: #f4f4fc;
  --bg-secondary: #eaeaf5;
  --bg-card: #ffffff;
  --bg-card-hover: #f8f8ff;
  --accent: #b8920a;
  --accent-dim: rgba(184,146,10,0.1);
  --accent-glow: rgba(184,146,10,0.18);
  --accent-2: #9a7a00;
  --text-1: #18182e;
  --text-2: #50506e;
  --text-3: #9898b0;
  --border: rgba(184,146,10,0.18);
  --border-h: rgba(184,146,10,0.5);
  --grad-card: linear-gradient(145deg,#ffffff,#f5f5ff);
  --grad-bg: linear-gradient(135deg,#f4f4fc,#ede8ff,#eaf0ff);
  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --glow: 0 0 24px rgba(184,146,10,0.12);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family: 'Inter', Verdana, Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--text-1);
  line-height: 1.7;
  min-height: 100vh;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}

::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius:3px; }

/* ── TOPNAV ── */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(8,8,16,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
  transition: var(--ease);
}

[data-theme="light"] .topnav {
  background: rgba(244,244,252,0.92);
}

.topnav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.topnav-logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.topnav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.topnav-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--accent);
  letter-spacing: 0.5px;
  line-height: 1.15;
}

.topnav-subtitle {
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 2.5px;
  font-weight: 500;
  display: block;
  text-transform: uppercase;
}

.topnav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-icon {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--accent);
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--ease);
}

.btn-icon:hover {
  background: var(--accent);
  color: #08080f;
  border-color: var(--accent);
}

.btn-cta {
  background: var(--grad);
  color: #08080f;
  border: none;
  padding: 9px 18px;
  border-radius: var(--r-sm);
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--ease);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px var(--accent-glow);
}

.hamburger {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-1);
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: var(--ease);
}

.hamburger:hover { border-color: var(--accent); color: var(--accent); }

/* ── LAYOUT ── */
.layout {
  display: flex;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

/* ── SIDEBAR ── */
.sidebar {
  width: var(--sidebar-w);
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  position: fixed;
  top: var(--nav-h);
  left: 0;
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 900;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}

.sidebar::-webkit-scrollbar { width: 3px; }

.sidebar-section {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-section:last-child {
  border-bottom: none;
  margin-top: auto;
}

.sidebar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-3);
  text-transform: uppercase;
  padding: 0 18px 8px;
}

.sidebar-nav { list-style: none; }

.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 18px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--ease);
  border-left: 2px solid transparent;
  position: relative;
}

.sidebar-nav li a:hover {
  color: var(--accent);
  background: var(--accent-dim);
  border-left-color: var(--accent);
  padding-left: 22px;
}

.sidebar-nav li a.active {
  color: var(--accent);
  background: var(--accent-dim);
  border-left-color: var(--accent);
}

.sidebar-nav li a i {
  width: 16px;
  text-align: center;
  font-size: 13px;
}

.nav-badge {
  margin-left: auto;
  background: var(--accent);
  color: #08080f;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 8px;
  font-family: 'Exo 2', sans-serif;
}

.server-status-card {
  margin: 0 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px;
}

.ss-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.ss-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-3);
  text-transform: uppercase;
}

.dot-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00d084;
  box-shadow: 0 0 8px rgba(0,208,132,0.6);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(0.75); }
}

.ss-players {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.ss-players span {
  font-size: 12px;
  color: var(--text-3);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.ss-ip {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  font-family: monospace;
  cursor: pointer;
  transition: var(--ease);
}

.ss-ip:hover { color: var(--accent); }

.sidebar-socials {
  padding: 14px 18px;
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 34px; height: 34px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  transition: var(--ease);
}

.social-btn:hover {
  background: var(--accent);
  color: #08080f;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ── MAIN ── */
.main-content {
  flex: 1;
  margin-left: var(--sidebar-w);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 44px 40px 64px;
}

/* ── HERO ── */
.hero {
  background: var(--grad-bg);
  position: relative;
  overflow: hidden;
  padding: 90px 48px 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(232,193,74,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent-dim);
  border: 1px solid rgba(232,193,74,0.28);
  color: var(--accent);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
}

.hero-title .hl {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.85;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--grad);
  color: #08080f;
  border: none;
  padding: 13px 30px;
  border-radius: var(--r);
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: var(--ease);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border-h);
  padding: 13px 30px;
  border-radius: var(--r);
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: var(--ease);
  letter-spacing: 0.3px;
}

.btn-outline:hover {
  background: var(--accent-dim);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 52px;
  margin-top: 58px;
  padding-top: 38px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.stat-lbl {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.8px;
  margin-top: 5px;
  display: block;
  font-weight: 500;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--grad-bg);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 44px 44px;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-hero h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.12;
  margin: 14px 0 12px;
}

.page-hero p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.85;
  max-width: 540px;
}

/* ── SECTION HEADER ── */
.sec-header { margin-bottom: 32px; }

.sec-eye {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec-eye::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--grad);
  display: inline-block;
  flex-shrink: 0;
}

.sec-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.sec-desc {
  color: var(--text-2);
  margin-top: 9px;
  font-size: 15px;
  max-width: 580px;
  line-height: 1.85;
}

/* ── CARDS ── */
.card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0;
  transition: var(--ease);
}

.card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow), var(--glow);
}

.card:hover::after { opacity: 1; }

.card-ico {
  width: 46px; height: 46px;
  background: var(--accent-dim);
  border: 1px solid rgba(232,193,74,0.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--accent);
  margin-bottom: 17px;
  transition: var(--ease);
}

.card:hover .card-ico {
  background: rgba(232,193,74,0.2);
}

.card-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 9px;
}

.card-text {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.8;
}

/* ── GRIDS ── */
.g2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 44px 0;
}

/* ── ACCORDION ── */
.accordion { display: flex; flex-direction: column; gap: 7px; }

.acc-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--ease);
}

.acc-item.open { border-color: var(--border-h); }

.acc-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  cursor: pointer;
  transition: var(--ease);
  user-select: none;
}

.acc-hdr:hover { background: var(--accent-dim); }

.acc-t {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
}

.acc-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(232,193,74,0.2);
  padding: 3px 8px;
  border-radius: 5px;
  min-width: 34px;
  text-align: center;
}

.acc-icon {
  color: var(--accent);
  transition: transform 0.3s ease;
  font-size: 13px;
}

.acc-item.open .acc-icon { transform: rotate(180deg); }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.acc-body-inner {
  padding: 16px 22px 22px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.9;
  border-top: 1px solid var(--border);
}

.acc-body-inner ul {
  padding-left: 18px;
  margin-top: 9px;
}

.acc-body-inner li { margin-bottom: 5px; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.gal-item {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
}

.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gal-item:hover img { transform: scale(1.08); }

.gal-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}

.gal-overlay i {
  color: #fff;
  font-size: 26px;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--ease);
}

.gal-item:hover .gal-overlay { background: rgba(0,0,0,0.42); }
.gal-item:hover .gal-overlay i { opacity:1; transform:scale(1); }

/* ── LIGHTBOX ── */
.lb-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lb-modal.open { display: flex; }

.lb-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lb-inner img {
  max-width: 90vw;
  max-height: 84vh;
  border-radius: var(--r);
  object-fit: contain;
  display: block;
}

.lb-close {
  position: absolute;
  top: -44px; right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: var(--ease);
}

.lb-close:hover { color: var(--accent); }

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(232,193,74,0.12);
  border: 1px solid rgba(232,193,74,0.28);
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 17px;
  transition: var(--ease);
  backdrop-filter: blur(8px);
}

.lb-nav:hover { background: var(--accent); color: #08080f; }
.lb-prev { left: -54px; }
.lb-next { right: -54px; }

.lb-cap {
  text-align: center;
  color: var(--text-2);
  margin-top: 13px;
  font-size: 13px;
}

/* ── VIP ── */
.vip-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  align-items: start;
}

.vip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px 26px;
  text-align: center;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.vip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.vip-card.feat {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--glow);
  transform: translateY(-8px);
}

.vip-card.feat:hover { transform: translateY(-12px); }

.vip-badge-top {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--grad);
  color: #08080f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 8px;
  font-family: 'Exo 2', sans-serif;
  text-transform: uppercase;
}

.vip-ico {
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.vip-card:nth-child(1) .vip-ico { background: rgba(192,192,192,0.1); color: #c0c0c0; }
.vip-card:nth-child(2) .vip-ico { background: var(--accent-dim); color: var(--accent); }
.vip-card:nth-child(3) .vip-ico { background: rgba(176,141,255,0.1); color: #b08dff; }

.vip-tier {
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}

.vip-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--text-1);
  margin-bottom: 4px;
}

.vip-price {
  font-family: 'Exo 2', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--accent);
  margin: 14px 0;
  line-height: 1;
}

.vip-price sup { font-size: 17px; vertical-align: top; margin-top: 6px; }
.vip-price sub { font-size: 13px; color: var(--text-3); vertical-align: bottom; font-weight: 400; font-family: 'Inter', sans-serif; }

.vip-feats {
  list-style: none;
  text-align: left;
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.vip-feats li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.vip-feats li i { color: var(--accent); margin-top: 2px; flex-shrink: 0; font-size: 11px; }
.vip-feats li.off { color: var(--text-3); text-decoration: line-through; }
.vip-feats li.off i { color: var(--text-3); }

.btn-vip {
  width: 100%;
  padding: 13px;
  border-radius: var(--r);
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: var(--ease);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.btn-vip-p { background: var(--grad); color: #08080f; border: none; }
.btn-vip-p:hover { transform: translateY(-2px); box-shadow: 0 8px 22px var(--accent-glow); }

.btn-vip-o { background: transparent; color: var(--accent); border: 1px solid var(--border-h); }
.btn-vip-o:hover { background: var(--accent-dim); transform: translateY(-2px); }

/* ── NEWS ── */
.news-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--ease);
}

.news-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.news-img {
  width: 100%;
  height: 196px;
  object-fit: cover;
  display: block;
}

.news-body { padding: 22px; }

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.news-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 9px;
  border-radius: 7px;
  border: 1px solid rgba(232,193,74,0.2);
}

.news-date {
  font-size: 12px;
  color: var(--text-3);
}

.news-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 9px;
  line-height: 1.35;
}

.news-ex {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.news-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--ease);
}

.news-link:hover { gap: 9px; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 22px;
  text-align: center;
  transition: var(--ease);
}

.team-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow), var(--glow);
}

.team-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  border: 2px solid var(--border);
  margin: 0 auto 14px;
  object-fit: cover;
  transition: var(--ease);
  display: block;
}

.team-card:hover .team-avatar {
  border-color: var(--accent);
  box-shadow: 0 0 18px var(--accent-glow);
}

.team-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
  display: block;
}

.team-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 9px;
}

.team-bio {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.team-soc { display: flex; gap: 7px; justify-content: center; }

/* ── VIDEO ── */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
}

.video-wrap iframe,
.video-wrap video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── FORM ── */
.form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 38px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group { margin-bottom: 18px; }

.form-lbl {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 7px;
  letter-spacing: 0.4px;
}

.form-ctrl {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-1);
  padding: 11px 15px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: var(--ease);
  outline: none;
  line-height: 1.5;
}

.form-ctrl:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,193,74,0.1);
}

.form-ctrl.err { border-color: #e84a4a; }
.form-ctrl::placeholder { color: var(--text-3); }
textarea.form-ctrl { resize: vertical; min-height: 128px; }

.form-err {
  color: #e84a4a;
  font-size: 11px;
  margin-top: 4px;
  display: none;
}

.form-err.vis { display: block; }

.form-ok {
  display: none;
  background: rgba(0,208,132,0.08);
  border: 1px solid rgba(0,208,132,0.28);
  border-radius: var(--r);
  padding: 16px 22px;
  color: #00d084;
  font-size: 14px;
  text-align: center;
  margin-top: 14px;
}

.form-ok.vis { display: block; }

/* ── NOTICES ── */
.notice {
  border-radius: var(--r);
  padding: 14px 18px;
  margin-bottom: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.75;
}

.notice i { font-size: 15px; margin-top: 2px; flex-shrink: 0; }

.n-warn { background: rgba(232,193,74,0.07); border: 1px solid rgba(232,193,74,0.22); color: var(--text-2); }
.n-warn i { color: var(--accent); }
.n-info { background: rgba(74,132,232,0.07); border: 1px solid rgba(74,132,232,0.22); color: var(--text-2); }
.n-info i { color: #5a9af0; }
.n-danger { background: rgba(232,74,74,0.07); border: 1px solid rgba(232,74,74,0.22); color: var(--text-2); }
.n-danger i { color: #e84a4a; }

/* ── TAGS ── */
.rtag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 7px;
  vertical-align: middle;
}

.rtag-ban { background: rgba(232,74,74,0.12); color: #e84a4a; border: 1px solid rgba(232,74,74,0.28); }
.rtag-warn { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(232,193,74,0.28); }
.rtag-kick { background: rgba(74,132,232,0.12); color: #5a9af0; border: 1px solid rgba(74,132,232,0.28); }

/* ── LAW ── */
.law-sec {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  margin-bottom: 14px;
}

.law-sec-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.law-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.law-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
}

.law-n {
  font-family: 'Exo 2', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  min-width: 34px;
  padding-top: 2px;
}

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 26px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--border);
}

.tl-item { position: relative; padding-bottom: 28px; }

.tl-item::before {
  content: '';
  position: absolute;
  left: -33px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 8px var(--accent-glow);
}

.tl-date { font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: 0.8px; margin-bottom: 4px; }

.tl-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 6px;
}

.tl-text { color: var(--text-2); font-size: 13px; line-height: 1.8; }

/* ── PROGRESS ── */
.prog-wrap { margin-bottom: 13px; }

.prog-lbl {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
}

.prog-lbl span:last-child { color: var(--accent); }

.prog-track {
  height: 5px;
  background: var(--bg-secondary);
  border-radius: 3px;
  overflow: hidden;
}

.prog-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 3px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

/* ── FILTER BTN ── */
.filter-bar { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 30px; }

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-2);
  padding: 7px 17px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 270px;
  box-shadow: var(--shadow);
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}

.toast.show { transform: translateX(0); }

.toast-ico {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

.t-success .toast-ico { background: rgba(0,208,132,0.12); color: #00d084; }
.t-info .toast-ico { background: var(--accent-dim); color: var(--accent); }

.toast-t { font-weight: 700; font-size: 13px; color: var(--text-1); }
.toast-m { font-size: 12px; color: var(--text-2); margin-top: 1px; }

/* ── FOOTER ── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 44px 40px 22px;
}

.footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.footer-brand p {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.8;
  margin: 12px 0 18px;
}

.footer-heading {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 7px; }

.footer-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-links a:hover { color: var(--accent); padding-left: 3px; }
.footer-links a i { font-size: 10px; color: var(--accent); opacity: 0.7; }

.footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy { color: var(--text-3); font-size: 12px; }
.footer-copy a { color: var(--accent); text-decoration: none; }

/* ── UTILITIES ── */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.text-acc { color: var(--accent); }
.text-muted { color: var(--text-3); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.au { animation: fadeUp 0.55s ease both; }
.au-1 { animation-delay: 0.08s; }
.au-2 { animation-delay: 0.16s; }
.au-3 { animation-delay: 0.24s; }
.au-4 { animation-delay: 0.32s; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  :root { --sidebar-w: 222px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .g3, .team-grid, .vip-grid { grid-template-columns: repeat(2,1fr); }
  .vip-card.feat { transform: none; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --sidebar-w: 0px; }

  .sidebar {
    width: 256px;
    transform: translateX(-100%);
    z-index: 1100;
    box-shadow: 4px 0 28px rgba(0,0,0,0.35);
  }

  .sidebar.open { transform: translateX(0); }

  .sb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1050;
  }

  .sb-overlay.vis { display: block; }

  .main-content { margin-left: 0; }
  .footer { margin-left: 0; }
  .hamburger { display: flex; }

  .page-content { padding: 28px 20px 48px; }
  .hero { padding: 60px 22px 56px; }
  .page-hero { padding: 38px 22px; }
  .hero-stats { gap: 26px; }

  .g2, .g3, .g4,
  .news-grid, .team-grid, .vip-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer { padding: 38px 20px 18px; }

  .topnav-subtitle { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .lb-prev { left: -42px; }
  .lb-next { right: -42px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .topnav-title { font-size: 15px; }
  .btn-cta span { display: none; }
}