/* ============================================================
   DOPE ESPORTS — Main Stylesheet
   dope-gaming.com
============================================================ */

/* ── VARIABLES ── */
:root {
  --gold:  #C8A84B;
  --cyan:  #4DC8C8;
  --grad:  linear-gradient(135deg, #C8A84B 0%, #4DC8C8 100%);
  --bg:    #1C1C1E;
  --bg2:   #222224;
  --bg3:   #2A2A2C;
  --text:  #FFFFFF;
  --muted: rgba(255,255,255,0.45);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── GRAD TEXT UTIL ── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-line {
  height: 2px;
  background: var(--grad);
}

/* ============================================================
   TOP BAR
============================================================ */
.site-topbar {
  background: var(--bg2);
  border-bottom: 2px solid;
  border-image: var(--grad) 1;
  display: flex;
  align-items: center;
  padding: 0 24px;
  height: 68px;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }

.hex-logo {
  width: 40px; height: 46px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hex-logo svg { position: absolute; inset: 0; }
.hex-logo span {
  position: relative; z-index: 1;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700; font-size: 14px;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 22px;
  line-height: 1; letter-spacing: 0.08em; text-transform: uppercase;
}
.logo-name .d { color: var(--gold); }
.logo-name .e { color: var(--cyan); display: block; font-size: 19px; letter-spacing: 0.1em; }

.topbar-socials { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.soc-btn {
  width: 36px; height: 36px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.soc-btn:hover { border-color: var(--cyan); background: rgba(77,200,200,0.1); }

.discord-btn {
  margin-left: 12px;
  border: 2px solid var(--cyan);
  background: transparent; color: var(--cyan);
  padding: 8px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 13px; letter-spacing: 0.15em;
  text-transform: uppercase; cursor: pointer; text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
  display: inline-block; line-height: 1.3; text-align: center;
}
.discord-btn:hover { background: var(--cyan); color: var(--bg); }

/* ============================================================
   NAV TABS
============================================================ */
.site-nav {
  background: var(--bg2);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center;
  padding: 0 24px; height: 44px;
  overflow-x: auto; scrollbar-width: none;
}
.site-nav::-webkit-scrollbar { display: none; }

.site-nav ul { display: flex; height: 100%; }
.site-nav ul li { height: 100%; }
.site-nav ul li a {
  display: flex; align-items: center; gap: 6px;
  padding: 0 20px; height: 100%;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600; font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  position: relative; bottom: -1px;
}
.site-nav ul li a:hover,
.site-nav ul li.current-menu-item a,
.site-nav ul li.current_page_item a {
  color: var(--text); border-bottom-color: var(--cyan);
}
.site-nav ul li:first-child a { color: var(--text); border-bottom-color: var(--cyan); }

/* ============================================================
   HERO SLIDESHOW
============================================================ */
.hero-wrap { position: relative; overflow: hidden; }

.slide-counter {
  position: absolute; top: 18px; right: 24px; z-index: 10;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; letter-spacing: 0.2em;
  color: var(--muted);
}
.slide-counter .cur { color: var(--text); }

.slide {
  display: none;
  min-height: calc(100vh - 112px);
  flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 24px 80px; text-align: center;
  position: relative; overflow: hidden;
}
.slide.active { display: flex; }
.slide::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(77,200,200,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(200,168,75,0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Slide 1 — Home */
.slide-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 13px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 36px;
}
.slide-eyebrow::before,
.slide-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--cyan); opacity: .6;
}

.big-hex {
  width: 130px; height: 150px; position: relative;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.big-hex svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.big-hex-inner {
  position: relative; z-index: 1;
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
}
.dlogo {
  font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 28px;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(72px, 18vw, 120px);
  text-transform: uppercase; letter-spacing: 0.06em; line-height: 0.9;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: clamp(13px,3.5vw,17px);
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-top: 6px;
}
.hero-motto {
  margin-top: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 15px; letter-spacing: 0.2em;
  color: var(--cyan); text-transform: uppercase;
}
.hero-divider {
  width: 60px; height: 2px; margin: 20px auto;
  background: var(--grad);
}
.hero-btns {
  display: flex; gap: 16px; margin-top: 12px;
  flex-wrap: wrap; justify-content: center;
}

/* Slide nav */
.slide-nav {
  position: absolute; bottom: 24px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  z-index: 10;
}
.arrow-btn {
  width: 32px; height: 32px; background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--muted); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s; line-height: 1;
}
.arrow-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.dots { display: flex; gap: 8px; align-items: center; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); cursor: pointer;
  transition: background .2s, transform .2s, width .2s;
}
.dot.active { background: var(--cyan); border-radius: 4px; width: 24px; }

/* Slides other */
.about-slide,
.team-slide,
.social-slide,
.join-slide { text-align: left; align-items: flex-start; padding: 60px 24px 80px; }
.team-slide,
.social-slide,
.join-slide { text-align: center; align-items: center; }

.slide-section-tag {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.slide-section-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--cyan); }

.about-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(40px,10vw,64px);
  text-transform: uppercase; line-height: 0.95; margin-bottom: 24px;
}
.about-text { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 100%; margin-bottom: 32px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; }
.stat-box {
  background: var(--bg3); border: 1px solid rgba(200,168,75,0.2); padding: 20px 16px;
}
.stat-val {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 36px;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-lbl { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.team-cards { display: flex; flex-direction: column; gap: 14px; width: 100%; margin-top: 32px; }
.team-card {
  background: var(--bg3); border: 1px solid rgba(255,255,255,0.08);
  padding: 18px 20px; display: flex; align-items: center; gap: 16px;
  text-align: left; cursor: pointer;
  transition: border-color .25s, transform .2s;
  position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--grad); transform: scaleY(0); transition: transform .25s;
}
.team-card:hover { border-color: rgba(77,200,200,0.35); transform: translateX(4px); }
.team-card:hover::before { transform: scaleY(1); }
.tc-game {
  width: 48px; height: 48px; border-radius: 4px;
  background: linear-gradient(135deg, rgba(200,168,75,0.15), rgba(77,200,200,0.15));
  border: 1px solid rgba(200,168,75,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
}
.tc-info { flex: 1; }
.tc-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 18px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.tc-sub { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.tc-rank {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 13px; letter-spacing: 0.15em;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; width: 100%; }

/* ── Live Social Card ── */
.soc-card--live {
  background: var(--bg3); border: 1px solid rgba(255,255,255,0.08);
  padding: 18px 16px 16px; text-align: left; cursor: default;
  transition: border-color .25s, transform .2s;
  display: flex; flex-direction: column; gap: 12px;
}
.soc-card--live:hover { border-color: rgba(77,200,200,0.4); transform: translateY(-3px); }

/* Card header */
.soc-card-head { display: flex; align-items: center; gap: 10px; }
.soc-avatar-wrap { position: relative; flex-shrink: 0; }
.soc-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid rgba(200,168,75,0.4);
  object-fit: cover; display: block;
}
.soc-avatar--placeholder {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(200,168,75,0.15), rgba(77,200,200,0.15));
  border: 2px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.soc-platform-icon {
  position: absolute; bottom: -2px; right: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--bg2); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; line-height: 1;
}
.soc-head-info { flex: 1; min-width: 0; }
.soc-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.08em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  display: flex; align-items: center; gap: 4px;
}
.soc-verified {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--cyan); color: var(--bg);
  font-size: 8px; font-weight: 900; flex-shrink: 0;
}
.soc-handle { font-size: 11px; color: var(--muted); margin-top: 2px; letter-spacing: 0.05em; }

/* Live badge */
.soc-live-badge {
  display: flex; align-items: center; gap: 4px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 9px; letter-spacing: 0.2em; color: var(--cyan);
  flex-shrink: 0;
}
.soc-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  animation: socPulse 1.5s ease-in-out infinite;
}
@keyframes socPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(0.7); }
}

/* Bio */
.soc-bio {
  font-size: 11px; color: var(--muted); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Stats row */
.soc-stats {
  display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  background: var(--bg2);
}
.soc-stat {
  flex: 1; padding: 8px 6px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.soc-stat:last-child { border-right: none; }
.soc-stat-val {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 16px;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.soc-stat-lbl {
  font-size: 9px; color: var(--muted); letter-spacing: 0.12em;
  text-transform: uppercase; margin-top: 3px;
}

/* CTA button */
.soc-follow {
  margin-top: 2px; padding: 9px 16px; background: transparent;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: background .2s, color .2s;
  width: 100%; border: 1px solid; text-align: center; display: block;
}
.soc-tiktok { border-color: var(--gold); color: var(--gold); }
.soc-tiktok:hover { background: var(--gold); color: var(--bg); }
.soc-insta { border-color: var(--cyan); color: var(--cyan); }
.soc-insta:hover { background: var(--cyan); color: var(--bg); }
.soc-disc { border-color: #5865F2; color: #7984F5; }
.soc-disc:hover { background: #5865F2; color: white; }
.soc-yt { border-color: #FF0000; color: #FF4444; }
.soc-yt:hover { background: #FF0000; color: white; }

/* Admin refresh button */
.soc-refresh-btn {
  margin-top: 18px; padding: 8px 20px;
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  color: var(--muted); font-family: 'Rajdhani', sans-serif;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: border-color .2s, color .2s;
}
.soc-refresh-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.soc-refresh-btn.loading { opacity: .5; pointer-events: none; }

.join-box {
  background: var(--bg3); border: 1px solid rgba(200,168,75,0.2);
  padding: 32px 20px; margin-top: 32px; width: 100%;
  position: relative; overflow: hidden;
}
.join-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad);
}
.join-box h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 28px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
}
.join-box p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.join-form { display: flex; flex-direction: column; gap: 12px; }
.join-input {
  background: var(--bg2); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text); padding: 12px 16px;
  font-family: 'Rajdhani', sans-serif; font-size: 14px; letter-spacing: 0.08em;
  outline: none; width: 100%; transition: border-color .2s;
}
.join-input:focus { border-color: var(--cyan); }
.join-input::placeholder { color: var(--muted); }

/* ============================================================
   BUTTONS
============================================================ */
.btn-fill, .btn-fill:visited {
  background: var(--grad); color: var(--bg); border: none;
  padding: 14px 28px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
  transition: filter .2s, transform .15s; display: inline-block;
}
.btn-fill:hover { filter: brightness(1.15); transform: translateY(-2px); color: var(--bg); }

.btn-outline, .btn-outline:visited {
  background: transparent; border: 2px solid var(--gold); color: var(--gold);
  padding: 12px 28px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
  transition: background .2s, color .2s; display: inline-block;
}
.btn-outline:hover { background: var(--gold); color: var(--bg); }

/* ============================================================
   MAIN CONTENT — BELOW SLIDESHOW
============================================================ */

/* Ticker */
.ticker-bar {
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; overflow: hidden; height: 38px;
}
.ticker-label {
  flex-shrink: 0; padding: 0 16px;
  background: var(--grad); height: 100%;
  display: flex; align-items: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 11px; letter-spacing: 0.25em; color: var(--bg);
  text-transform: uppercase; white-space: nowrap;
}
.ticker-track-wrap { overflow: hidden; flex: 1; }
.ticker-track {
  display: flex; gap: 48px; align-items: center;
  animation: ticker 22s linear infinite; width: max-content; padding-left: 24px;
}
.ticker-item {
  font-family: 'Rajdhani', sans-serif; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
}
.ticker-item::before { content: '//'; color: var(--gold); opacity: .7; }

/* Section headers */
.section-head { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.section-head-line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(200,168,75,0.4), transparent); }
.section-head-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 20px; text-transform: uppercase; letter-spacing: 0.18em; white-space: nowrap;
}

/* Org info */
.org-section { padding: 48px 24px; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.info-card {
  background: var(--bg2); border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid transparent; padding: 20px 16px;
  position: relative; overflow: hidden; transition: border-color .25s, transform .2s;
}
.info-card:hover { border-top-color: var(--gold); transform: translateY(-3px); }
.info-card-icon { font-size: 26px; margin-bottom: 10px; display: block; }
.info-card-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 15px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); margin-bottom: 6px;
}
.info-card-desc { font-size: 12px; line-height: 1.6; color: var(--muted); }
.info-card-badge {
  display: inline-block; margin-top: 10px; padding: 2px 10px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.3); color: var(--gold);
}
.info-card-badge.cyan {
  background: rgba(77,200,200,0.1); border-color: rgba(77,200,200,0.3); color: var(--cyan);
}

/* Achievements */
.ach-section { padding: 0 24px 48px; }
.ach-strip { display: flex; flex-direction: column; gap: 10px; }
.ach-row {
  background: var(--bg2); border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--gold); padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
}
.ach-row.cyan-border { border-left-color: var(--cyan); }
.ach-pos {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 28px; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  flex-shrink: 0; min-width: 44px; text-align: center;
}
.ach-info { flex: 1; }
.ach-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 15px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text);
}
.ach-meta { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.ach-prize { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; color: var(--gold); flex-shrink: 0; }

/* News */
.news-section { padding: 0 24px 48px; }
.news-list { display: flex; flex-direction: column; gap: 1px; }
.news-item {
  background: var(--bg2); padding: 16px; display: flex; gap: 14px; align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer; transition: background .2s;
}
.news-item:hover { background: var(--bg3); }
.news-date-block { flex-shrink: 0; text-align: center; width: 40px; }
.news-day {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 24px; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.news-month { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.news-content { flex: 1; }
.news-tag {
  display: inline-block; padding: 1px 8px; margin-bottom: 5px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  background: rgba(77,200,200,0.12); color: var(--cyan); border: 1px solid rgba(77,200,200,0.25);
}
.news-tag.gold { background: rgba(200,168,75,0.12); color: var(--gold); border-color: rgba(200,168,75,0.25); }
.news-title-text {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.2; color: var(--text);
}
.news-excerpt { font-size: 12px; color: var(--muted); line-height: 1.5; margin-top: 4px; }

/* Values */
.values-section { padding: 0 24px 48px; }
.values-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.val-box {
  background: var(--bg2); border: 1px solid rgba(255,255,255,0.07);
  padding: 18px 12px; text-align: center;
  position: relative; overflow: hidden;
}
.val-box::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--grad); transform: scaleX(0); transition: transform .3s;
}
.val-box:hover::after { transform: scaleX(1); }
.val-icon { font-size: 24px; margin-bottom: 8px; }
.val-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text);
}
.val-desc { font-size: 11px; color: var(--muted); margin-top: 4px; line-height: 1.5; }

/* CTA Banner */
.cta-banner {
  margin: 0 24px 48px;
  background: linear-gradient(135deg, rgba(200,168,75,0.12) 0%, rgba(77,200,200,0.12) 100%);
  border: 1px solid rgba(200,168,75,0.25); padding: 28px 20px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad);
}
.cta-banner h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 26px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px;
}
.cta-banner p { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--bg2);
  border-top: 2px solid; border-image: var(--grad) 1;
}
.footer-main { padding: 40px 24px 28px; display: flex; flex-direction: column; gap: 32px; }

.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 20px; line-height: 1; letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-logo-name .d { color: var(--gold); }
.footer-logo-name .e { color: var(--cyan); display: block; font-size: 16px; }
.footer-tagline { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.fsoc {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.12);
  background: transparent; display: flex; align-items: center; justify-content: center;
  font-size: 15px; cursor: pointer; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.fsoc:hover { border-color: var(--cyan); background: rgba(77,200,200,0.1); }

.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text);
  margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a {
  text-decoration: none; font-size: 13px; color: var(--muted);
  letter-spacing: 0.06em; transition: color .2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-links li a::before { content: '›'; color: var(--gold); font-size: 14px; }
.footer-links li a:hover { color: var(--cyan); }

.footer-contact { margin-top: 4px; }
.contact-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 12px; color: var(--muted);
}
.contact-item:last-child { border: none; }
.contact-icon { font-size: 14px; flex-shrink: 0; }
.contact-val { color: var(--text); }

.footer-bottom {
  background: var(--bg); padding: 14px 24px;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-copy { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-align: center; }
.footer-copy a { color: var(--gold); text-decoration: none; }
.footer-legal { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.footer-legal a {
  font-size: 10px; color: var(--muted); text-decoration: none;
  letter-spacing: 0.1em; text-transform: uppercase; transition: color .2s;
}
.footer-legal a:hover { color: var(--cyan); }

/* ============================================================
   SINGLE POST / PAGE
============================================================ */
.page-content, .entry-content {
  max-width: 800px; margin: 40px auto; padding: 0 24px;
  font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.8);
}
.entry-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 40px; text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 24px; background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.entry-content h2, .entry-content h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; margin: 28px 0 12px;
  color: var(--text);
}
.entry-content p { margin-bottom: 16px; }
.entry-content a { color: var(--cyan); }
.entry-content a:hover { color: var(--gold); }

/* ============================================================
   PAGE TEMPLATE (page.php)
============================================================ */

.page-hero {
  padding: 56px 24px 44px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(77,200,200,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 0%,   rgba(200,168,75,0.05) 0%, transparent 50%);
}
.page-hero-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
}
.page-hero-tag::before,
.page-hero-tag::after {
  content: ''; display: inline-block;
  width: 22px; height: 1px;
  background: var(--cyan); opacity: .6;
  vertical-align: middle; margin: 0 8px;
}
.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(36px, 9vw, 64px);
  text-transform: uppercase; line-height: 1; letter-spacing: 0.04em;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 14px; color: var(--muted);
  max-width: 480px; margin: 0 auto; line-height: 1.7;
}
.page-wrap {
  max-width: 820px; margin: 0 auto; padding: 40px 24px 64px;
}
.page-thumb {
  margin-bottom: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.page-thumb::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--grad);
}
.page-thumb img { width: 100%; height: auto; display: block; filter: brightness(0.9); }

.page-body.entry-content {
  max-width: 100%; margin: 0; padding: 0;
  font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.75);
}
.page-body h1, .page-body h2 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(24px, 5vw, 36px); text-transform: uppercase;
  letter-spacing: 0.08em; line-height: 1.1; margin: 40px 0 14px;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-body h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 20px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text); margin: 32px 0 10px;
  padding-left: 14px; border-left: 3px solid var(--cyan);
}
.page-body h4, .page-body h5, .page-body h6 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 15px; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold); margin: 24px 0 8px;
}
.page-body p { margin-bottom: 18px; }
.page-body a { color: var(--cyan); text-decoration: underline; text-decoration-color: rgba(77,200,200,0.3); transition: color .2s; }
.page-body a:hover { color: var(--gold); }
.page-body strong { color: var(--text); font-weight: 700; }
.page-body em { color: var(--gold); font-style: italic; }
.page-body ul, .page-body ol {
  padding-left: 0; margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.page-body ul li, .page-body ol li {
  padding: 10px 14px 10px 40px;
  background: var(--bg2); border: 1px solid rgba(255,255,255,0.06);
  font-size: 14px; color: rgba(255,255,255,0.75);
  position: relative; list-style: none; transition: border-color .2s;
}
.page-body ul li:hover, .page-body ol li:hover { border-color: rgba(77,200,200,0.25); }
.page-body ul li::before {
  content: '›'; position: absolute; left: 16px;
  color: var(--gold); font-size: 18px; line-height: 1.3;
}
.page-body ol { counter-reset: dope-list; }
.page-body ol li { counter-increment: dope-list; }
.page-body ol li::before {
  content: counter(dope-list, decimal-leading-zero);
  position: absolute; left: 12px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 13px;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page-body blockquote {
  margin: 28px 0; padding: 20px 20px 20px 24px;
  background: linear-gradient(135deg, rgba(200,168,75,0.07), rgba(77,200,200,0.07));
  border-left: 4px solid var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 600; letter-spacing: 0.04em; color: var(--text);
}
.page-body code {
  background: var(--bg3); border: 1px solid rgba(77,200,200,0.2);
  color: var(--cyan); font-size: 12px; padding: 2px 7px;
}
.page-body pre {
  background: var(--bg3); border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--cyan); padding: 20px; overflow-x: auto; margin-bottom: 20px;
}
.page-body pre code { background: none; border: none; padding: 0; font-size: 13px; color: rgba(255,255,255,0.8); }
.page-body hr { border: none; height: 1px; background: var(--grad); margin: 36px 0; opacity: .4; }
.page-body table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 13px; }
.page-body table th {
  background: var(--bg3); border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 14px; text-align: left;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--cyan);
}
.page-body table td { border: 1px solid rgba(255,255,255,0.06); padding: 10px 14px; color: rgba(255,255,255,0.7); }
.page-body table tr:hover td { background: rgba(255,255,255,0.03); }
.page-body img { max-width: 100%; height: auto; display: block; margin: 24px auto; border: 1px solid rgba(255,255,255,0.08); }

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide.active > * { animation: fadeUp 0.5s ease both; }
.slide.active > *:nth-child(2) { animation-delay: .06s; }
.slide.active > *:nth-child(3) { animation-delay: .12s; }
.slide.active > *:nth-child(4) { animation-delay: .18s; }
.slide.active > *:nth-child(5) { animation-delay: .24s; }
.slide.active > *:nth-child(6) { animation-delay: .30s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 600px) {
  .info-grid { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
