/* ===========================
   NirvanaMt2 -- Main Stylesheet
   =========================== */

:root {
  /*  -- Reina2-matched dark base  -- */
  --bg:        #000000;
  --bg2:       #0a0a0a;
  --bg3:       #111111;
  --panel:     #140000;
  --panel2:    #1e0000;

  /*  -- Deep crimson accents  -- */
  --red:       #8d0d0d;
  --red2:      #c41e3a;
  --red-dark:  #470404;

  /*  -- Warm gold  -- */
  --gold:      #d4a959;
  --gold-lt:   #f0d090;
  --gold-dk:   #8a6a32;
  --gold-warm: #ffdea4;

  /*  -- Text  -- */
  --text:      #e0e0e0;
  --text2:     #d6b98c;
  --muted: #e7d8bd;

  /*  -- Borders  -- */
  --border:    rgba(212,169,89,.25);
  --border2:   rgba(240,208,144,.12);
  --border3:   rgba(255,255,255,.06);

  /*  -- Section accent border  -- */
  --sect-border: 1px solid #931212;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Philosopher', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {max-width: 1200px;margin: 0 auto;}

/*  -- Scroll fade  -- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; will-change: opacity, transform; }
.fade-in.visible { opacity: 1; transform: none; will-change: auto; }

/*  -- Label  -- */
.label-sm {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold);
}

/*  -- Section heading -- premium gold gradient  -- */
.section-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 10px 0 0;
  text-shadow: none;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(180,140,0,.35));
}
.section-heading em {
  font-style: normal;
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background: linear-gradient(90deg, #ffc052, #ffdda0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-desc { margin-top: 14px; color: var(--muted); font-size: .95rem; line-height: 1.85; max-width: 560px; }

.sec-head { margin-bottom: 60px; }
.sec-head.centered { text-align: center; }
.sec-head.centered .section-desc { margin: 14px auto 0; }

/*  -- Buttons  -- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 32px; font-family: 'Philosopher', serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; border-radius: 4px; cursor: pointer; border: none;
  transition: all .22s ease;
}
.btn-red {
  background: linear-gradient(135deg, var(--red2) 0%, var(--red) 60%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(141,13,13,.5), inset 0 1px 0 rgba(255,255,255,.15);
  border: 1px solid rgba(141,13,13,.4);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(141,13,13,.65); }
.btn-ghost {
  background: rgba(255,255,255,.04); color: var(--text2);
  border: 1px solid rgba(255,180,60,.2);
}
.btn-ghost:hover { background: rgba(212,169,89,.1); border-color: var(--gold); color: var(--gold-lt); }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   HEADER
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  transition: background .35s, border-color .35s, box-shadow .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgb(20 0 0 / 90%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 4px 30px rgba(0,0,0,.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 32px;
  max-width: 1340px;
  margin: 0 auto;
}

.logo img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(200,60,26,.5));
  transition: filter .3s;
}
.logo:hover img { filter: drop-shadow(0 0 22px rgba(200,60,26,.8)); }

.header-nav-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(8,0,0,.55);
  border: 1px solid rgba(180,30,30,.22);
  border-radius: 999px;
  padding: 5px 8px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 20px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.04);
}
.main-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(240,208,144,.75);
  padding: 9px 18px;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav-discord-link, .nav-tanitim-link { display: none; }
.main-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}
.main-nav a.active {
  color: var(--gold-lt);
  background: rgba(141,13,13,.35);
}

.header-cta { display: flex; gap: 10px; align-items: center; }
.header-cta .btn { padding: 9px 20px; font-size: 11px; }

.header-discord {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid rgba(88,101,242,.35);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(245,236,224,.7);
  background: rgba(88,101,242,.08);
  transition: all .2s;
}
.header-discord i { color: #7289da; font-size: 13px; }
.header-discord:hover {
  background: rgba(88,101,242,.18);
  border-color: rgba(88,101,242,.6);
  color: #fff;
}

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); transition: .3s; }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PRELOADER
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#preloader img {
  height: 140px; width: auto;
  animation: pl-pulse 1.1s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 32px rgba(200,60,26,.8));
}
@keyframes pl-pulse {
  from { transform: scale(.88); opacity: .7; }
  to   { transform: scale(1.08); opacity: 1; }
}

/* ==== POPUPS ==== */
.popup-overlay {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.popup-overlay.open { opacity: 1; visibility: visible; }
.popup-box {
  background: linear-gradient(160deg, #160202, #0a0000);
  border: 1px solid rgba(180,30,30,.4);
  border-radius: 16px;
  max-width: 640px; width: 100%;
  max-height: 80vh;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,.8);
}
.popup-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px 18px;
  border-bottom: 1px solid rgba(180,30,30,.25);
  flex-shrink: 0;
}
.popup-header h3 {
  font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.popup-close {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: var(--text2); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.popup-close:hover { background: rgba(180,30,30,.25); color: #fff; border-color: rgba(180,30,30,.5); }
.popup-body {
  overflow-y: auto; padding: 24px 28px;
  font-size: .88rem; line-height: 1.8; color: var(--text2);
  scrollbar-width: thin; scrollbar-color: rgba(180,30,30,.4) transparent;
}
.popup-body h4 {
  font-family: 'Cinzel', serif; font-size: .82rem; color: var(--gold-lt);
  letter-spacing: 1.5px; text-transform: uppercase; margin: 20px 0 8px;
}
.popup-body p { margin-bottom: 10px; }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   HERO
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}

.hero-video-wrap { position: absolute; inset: 0; z-index: 0; transform: translateZ(0); }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; opacity: .6; will-change: auto; }
.hero-video-wrap::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 50% 50%, transparent 25%, rgba(0,0,0,.55) 100%);
}
.hero-video-wrap::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgb(43,0,0,.6) 50%, rgba(0,0,0,.92) 100%);
}

.hero-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0;
  animation: hero-in .9s cubic-bezier(.2,.8,.3,1) both;
}
@keyframes hero-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 20px; margin-bottom: 28px;
  border: 1px solid rgba(200,150,10,.3); border-radius: 30px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); background: rgba(200,150,10,.1);
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red2); box-shadow: 0 0 10px var(--red2);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* Logo -- enlarged, responsive */
.hero-logo {
  display: block;
  max-width: 560px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 60px rgba(200,60,26,.65)) drop-shadow(0 0 120px rgba(200,60,26,.25)) drop-shadow(0 10px 30px rgba(0,0,0,.9));
  animation: logo-glow 4s ease-in-out infinite;
  margin-bottom: 28px;
}
@keyframes logo-glow {
  0%,100% { filter: drop-shadow(0 0 60px rgba(200,60,26,.65)) drop-shadow(0 0 120px rgba(200,60,26,.25)) drop-shadow(0 10px 30px rgba(0,0,0,.9)); }
  50%     { filter: drop-shadow(0 0 90px rgba(232,78,34,.9))  drop-shadow(0 0 180px rgba(200,60,26,.4))  drop-shadow(0 10px 30px rgba(0,0,0,.9)); }
}

/* Gold gradient tagline -- big & vivid */
.hero-tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #c1923f 0%, #fff9e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(255,200,80,.45));
  margin-bottom: 20px;
}

/* Date badge -- bigger & vivid */
.hero-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 32px;
  margin-bottom: 40px;
  background: rgba(26,12,5,.95);
  border: 1px solid rgba(255,200,60,.35);
  border-radius: 4px;
  box-shadow: 0 0 28px rgba(200,130,0,.18), inset 0 1px 0 rgba(255,200,60,.1);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-lt);
  text-shadow: 0 0 18px rgba(255,200,80,.5);
}
.hero-date i { color: var(--gold); font-size: 1.1em; }
.hero-date strong { color: #fff; font-weight: 800; }

/* PNG-image hero buttons */
.btn-img {
  position: relative;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  overflow: hidden;
  min-width: 240px; height: auto;
}
.btn-img img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 300px;
  min-width: 220px;
  pointer-events: none;
  transition: filter .22s, transform .22s;
}
.btn-img span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,.95);
}
/* Koyu buton (buton1)  -- altın */
.btn-red.btn-img span { color: #f5d98a; }
/* Açık buton (buton2)  -- koyu kahve */
.btn-ghost.btn-img span { color: #3a1a00; text-shadow: 0 1px 4px rgba(0,0,0,.3); }
.btn-img:hover img { filter: brightness(1.14) saturate(1.12); transform: scale(1.04); }
.btn-img:hover { transform: translateY(-3px); }

/* Buttons */
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 52px; }

/* Countdown */
.hero-countdown { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.countdown-label {
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(154,128,112,.55);
  display: flex; align-items: center; gap: 12px;
}
.countdown-label::before, .countdown-label::after {
  content: ''; display: block; width: 40px; height: 1px; background: rgba(200,150,10,.2);
}
.countdown-row { display: flex; gap: 6px; align-items: center; }
.cd-sep { font-family: 'Cinzel', serif; font-size: 1.7rem; font-weight: 700; color: rgba(200,150,10,.3); margin-bottom: 14px; }
.cd-unit {
  width: 90px; padding: 18px 8px 14px;
  background: linear-gradient(180deg, rgba(77,14,14,.8), rgba(26,0,0,0));
  border: 1px solid #690e0e; border-radius: 4px;
  text-align: center;
  box-shadow: 0 0 18px rgba(197,0,0,.25);
}
.cd-unit .num {
  font-family: 'Cinzel', serif; font-size: 2.3rem; font-weight: 700;
  color: #ffd27b; line-height: 1;
  text-shadow: 0 0 10px rgba(255,211,122,.6);
}
.cd-unit .lbl { margin-top: 8px; font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #fff; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 7px;
  opacity: .5; animation: hero-in 1s .6s ease both;
}
.hero-scroll span { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.scroll-mouse {
  width: 20px; height: 32px; border: 1px solid rgba(200,150,10,.4); border-radius: 10px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-mouse::before {
  content: ''; width: 2px; height: 6px; background: var(--gold); border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(8px);opacity:0} }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   GENERIC SECTION
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.section { position: relative; overflow: hidden; border-bottom: var(--sect-border); padding: 100px 0; }

/*  -- Features section  -- */
.features-section {
  border-bottom: var(--sect-border);
}
.features-section > .container {
  padding-top: 80px;
  padding-bottom: 0;
  padding-left: 28px;
  padding-right: 28px;
}

.section-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .22; z-index: 0;
}
.section-bg-overlay { position: absolute; inset: 0; z-index: 1; }
.section > .container { position: relative; z-index: 2; }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   FEATURES -- TIMELINE
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Tam viewport genişliğinde satır */
.tl-row {
  width: 100%;
  border-top: 1px solid rgba(130,10,10,.5);
  content-visibility: auto;
  contain-intrinsic-size: 0 400px;
}
.tl-row:last-child { border-bottom: 1px solid rgba(130,10,10,.5); }

/* Degrade arkaplanlar -- doğrudan elemana, sorunsuz */
.tl-odd  { background: linear-gradient(45deg,  #2d0000 0%, #000000 100%); }
.tl-even { background: linear-gradient(225deg, #2d0000 0%, #000000 100%); }

/* Ã„Â°çerik wrapper -- max-width + grid */
.tl-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/*  -- Framed image  -- */
.tl-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: visible; /* so the gem pops outside */
}

/* Inner image */
.tl-img-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgb(180 0 0 / 35%);
  box-shadow:
    0 0 0 1px rgba(180,140,0,.12),
    inset 0 0 30px rgba(0,0,0,.4),
    0 16px 48px rgba(0,0,0,.6);
}
.tl-img-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, opacity .3s;
  opacity: .9;
}
.tl-img:hover .tl-img-inner img { transform: scale(1.04); opacity: 1; }

/* Corner ornaments */
.tl-img-inner::before,
.tl-img-inner::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  z-index: 2; pointer-events: none;
}
.tl-img-inner::before { top: 10px; left: 10px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.tl-img-inner::after  { bottom: 10px; right: 10px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

/* Extra two corners */
.tl-img-corner-tr,
.tl-img-corner-bl {
  position: absolute;
  width: 28px; height: 28px;
  pointer-events: none; z-index: 2;
}
.tl-img-corner-tr { top: 10px; right: 10px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.tl-img-corner-bl { bottom: 10px; left: 10px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }

/* Top-center gem ornament */
.tl-img-gem {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  width: 28px; height: 28px;
  background: radial-gradient(circle at 35% 30%, var(--gold-lt), var(--gold) 50%, var(--gold-dk));
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  box-shadow: 0 0 12px rgba(200,150,10,.7);
  filter: drop-shadow(0 2px 6px rgba(180,140,0,.6));
}

/*  -- Text block  -- */
.tl-text {}

.tl-text h3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
}
/* Highlighted part of title */
.tl-text h3 .hl {
  background: linear-gradient(90deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.tl-text p {
  font-size: .93rem; line-height: 1.9; color: var(--muted);
  max-width: 460px;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   GALLERY
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gal-item {
  overflow: hidden; border-radius: 4px;
  border: 1px solid rgba(180,140,0,.25);
  position: relative; aspect-ratio: 4/3;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform .5s ease, opacity .3s; display: block; }
.gal-item:hover img { transform: scale(1.06); opacity: 1; }

/* Corner frame ornaments */
.gal-item::before,
.gal-item::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  z-index: 2;
  pointer-events: none;
}
.gal-item::before {
  top: 8px; left: 8px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.gal-item::after {
  bottom: 8px; right: 8px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
/* Extra corners via inner pseudo on overlay */
.gal-item .gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,8,3,.88) 100%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 14px;
  z-index: 1;
}
.gal-item .gal-overlay::before,
.gal-item .gal-overlay::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  pointer-events: none;
}
.gal-item .gal-overlay::before {
  top: 8px; right: 8px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.gal-item .gal-overlay::after {
  bottom: 8px; left: 8px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-lt); }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   STREAMERS -- Yatay Kart
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
/* Section title  -- büyük başlık */
.sc-section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.sc-section-title em {
  font-style: normal;
  background: linear-gradient(90deg, #ffc052, #ffdda0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Featured banner */
.sc-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0;
  background: linear-gradient(90deg, #0e0000, #1a0000, #0e0000);
  border: 1px solid rgba(150,20,20,.4);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
}
.sc-banner-img {
  width: 320px;
  flex-shrink: 0;
  overflow: hidden;
}
.sc-banner-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  opacity: .9;
}
.sc-banner-text {
  padding: 28px 36px;
  text-align: center;
}
.sc-banner-text p {
  font-size: .95rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 10px;
}
.sc-banner-text p:last-child { margin-bottom: 0; }
.sc-banner-hl {
  color: var(--gold-lt) !important;
  font-weight: 700;
}
.sc-banner-hl em { font-style: normal; color: #fff; }

/* Partner grid  -- 6 sütun */
.sc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

/* Partner kart */
.sc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: linear-gradient(180deg, #1a0101 0%, #0d0000 100%);
  border: 1px solid rgba(140,15,15,.5);
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 14px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  cursor: pointer;
}
.sc-card:hover {
  border-color: rgba(180,20,20,.8);
  box-shadow: 0 8px 28px rgba(141,13,13,.25), 0 0 0 1px rgba(180,20,20,.3);
  transform: translateY(-4px);
}

/* "SERİ PARTNER" rozeti */
.sc-badge {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: linear-gradient(90deg, #2a0000, #3d0505, #2a0000);
  border-bottom: 1px solid rgba(150,15,15,.5);
  padding: 7px 4px;
  margin-bottom: 16px;
}

/* Yuvarlak avatar  -- kırmızı halka */
.sc-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #8d0d0d, #c41e3a, #8d0d0d);
  box-shadow: 0 0 16px rgba(141,13,13,.5);
  margin-bottom: 12px;
  transition: box-shadow .25s;
}
.sc-card:hover .sc-ring {
  box-shadow: 0 0 28px rgba(196,30,58,.7);
}
.sc-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid #0d0000;
}

/* İsim */
.sc-name {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 0 8px;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   CTA -- 3 Temmuz
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
}
.cta-section .section-bg { opacity: .35; }

.cta-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr auto; gap: 48px;
  align-items: center;
}

.cta-text .label-sm { margin-bottom: 14px; }
.cta-text h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; color: #fff; line-height: 1.1;
  text-shadow: 0 0 40px rgba(141,13,13,.5);
  margin-bottom: 16px;
}
.cta-text h2 em { font-style: normal; color: var(--gold-lt); }
.cta-text p { font-size: .95rem; line-height: 1.85; color: var(--muted); max-width: 520px; }
.cta-actions-col { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
.cta-actions-col .btn { justify-content: center; }

/* Red glow blob */
.cta-glow {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(141,13,13,.18) 0%, transparent 55%);
  pointer-events: none;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   FOOTER
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.site-footer {
  background: radial-gradient(circle at top, rgba(255,80,80,.14), transparent 62%),
              linear-gradient(180deg, #140000, #070000);
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(255,180,60,.30);
  padding: 20px 25px;
}

/* Red glow at top */
.site-footer::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 372px;
  background: radial-gradient(circle at top, rgb(255 23 23 / 16%), transparent 100%);
  pointer-events: none;
}

/* No second footer pseudo needed */
.site-footer::after { display: none; }

/*  -- Main body  -- */
.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 0;
}

/* Brand column */
.footer-brand img {
  height: 48px; width: auto; margin-bottom: 20px;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.6));
}
.footer-brand p {
  font-size: .88rem; line-height: 1.85; color: var(--text2); margin-bottom: 22px;
  opacity: .92;
}

/* Feature chips */
.footer-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.footer-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255,180,60,.25);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  color: #ffd9a5;
  background: rgba(255,80,80,.1);
}
.footer-chip i { color: #ffcf7a; font-size: .85rem; }

/* New footer social icons (İletişim column) */
.footer-socials-new {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px;
}
.fsn-item {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 9px 10px; border-radius: 10px;
  font-size: .82rem; font-weight: 600; text-decoration: none;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.75);
  transition: all .22s;
}
.fsn-item i { font-size: .95rem; }
.fsn-item:hover { transform: translateY(-2px); color: #fff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.07); }
.fsn-item.discord  i { color: #7289da; }
.fsn-item.discord:hover  { border-color: rgba(114,137,218,.4); box-shadow: 0 0 14px rgba(114,137,218,.15); }
.fsn-item.instagram i { color: #e1306c; }
.fsn-item.instagram:hover { border-color: rgba(225,48,108,.4); box-shadow: 0 0 14px rgba(225,48,108,.15); }
.fsn-item.facebook  i { color: #1877f2; }
.fsn-item.facebook:hover  { border-color: rgba(24,119,242,.4); box-shadow: 0 0 14px rgba(24,119,242,.15); }
.fsn-item.tiktok   i { color: #ffffff; }
.fsn-item.tiktok:hover   { border-color: rgba(255,255,255,.3); box-shadow: 0 0 14px rgba(255,255,255,.1); }

/* Canlı Destek button */
.footer-live-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 18px; border-radius: 10px; width: 100%;
  background: linear-gradient(135deg, #1a0505, #2d0808);
  border: 1px solid rgba(180,30,30,.45);
  font-family: 'Cinzel', serif; font-size: .82rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-lt); text-decoration: none;
  transition: all .22s; position: relative; overflow: hidden;
}
.footer-live-btn i { font-size: 1rem; color: var(--gold); }
.flb-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22dd66;
  box-shadow: 0 0 6px #22dd66;
  animation: flb-pulse 1.5s ease-in-out infinite;
}
@keyframes flb-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #22dd66; }
  50%       { opacity: .5; box-shadow: 0 0 12px #22dd66; }
}
.footer-live-btn:hover {
  background: linear-gradient(135deg, #2d0808, #470a0a);
  border-color: rgba(212,169,89,.5);
  color: #fff;
  box-shadow: 0 8px 24px rgba(141,13,13,.35);
  transform: translateY(-2px);
}

/* Quick menu column */
.footer-menu-col h4 {
  font-family: 'Cinzel', serif; font-size: .72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #ffcf7a;
  margin-bottom: 18px;
}
.footer-menu-col ul li { margin-bottom: 12px; }
.footer-menu-col ul li a {
  font-size: .9rem; color: var(--text2); transition: color .2s, padding-left .2s;
  display: block;
}
.footer-menu-col ul li a:hover { color: #fff; padding-left: 6px;
  text-shadow: 0 0 12px rgba(255,140,60,.55);
}

/* Bottom bar */
.footer-bottom {
  padding: 20px 0 0px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,180,60,.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.footer-bottom .copy { font-size: .8rem; color: rgba(214,185,140,.9); }
.footer-bottom .legal { display: flex; gap: 6px; align-items: center; }
.footer-bottom .legal a { font-size: .8rem; color: var(--text2); transition: color .2s; }
.footer-bottom .legal a:hover { color: #fff; text-shadow: 0 0 12px rgba(255,140,60,.45); }
.footer-bottom .legal span { color: rgba(214,185,140,.5); opacity: .5; margin: 0 8px; }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   DIVIDER
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.stripe { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent); }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   RESPONSIVE
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
@media (max-width: 1060px) {
  .tl-content { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; }
  .tl-text p { max-width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-grid { grid-template-columns: repeat(4, 1fr); }
  .sc-banner { grid-template-columns: 1fr; }
  .sc-banner-img { width: 100%; }
  .sc-banner-img img { height: 160px; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions-col { flex-direction: row; min-width: unset; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .header-cta, .header-discord { display: none; }
  .header-nav-wrap { display: contents; }
  .main-nav { display: none; }
  .burger { display: flex; }
  .nav-discord-link, .nav-tanitim-link { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5,0,0,.97);
    padding: 100px 32px 40px;
    z-index: 199;
  }
  .main-nav.open a {
    font-size: 1.1rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    border-radius: 0;
    letter-spacing: 2px;
  }
}

@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .tl-content { gap: 24px; padding: 36px 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-grid { grid-template-columns: repeat(3, 1fr); }
  .sc-ring { width: 72px; height: 72px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions-col { flex-direction: column; }
  .hero-logo { max-width: 340px; width: 85%; }
  .cd-unit { width: 72px; }
  .cd-unit .num { font-size: 1.75rem; }
  .cd-sep { font-size: 1.3rem; }
  .countdown-row { gap: 4px; }
}

@media (max-width: 420px) {
  .footer-nav { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .sc-name { font-size: .78rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
  #preloader img { animation: none; }
  .flb-dot { animation: none; }
}
