:root {
  --bg-0: #05070D;
  --bg-1: #0A0F1C;
  --panel-0: #0E1526;
  --panel-1: #111A30;
  --text: #E8ECF4;
  --muted: #AAB5CC;
  --red-a: #E5303F;
  --red-b: #FF2E4D;
  --cyan: #22D3EE;
  --star: #F6C453;
  --green: #34D399;
  --radius: 18px;
  --shadow: 0 14px 35px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: radial-gradient(circle at 15% 20%, #10192f 0%, var(--bg-0) 40%, #03050b 100%);
  color: var(--text);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }

.container {
  width: min(1140px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.top-marquee,
.bottom-marquee {
  background: linear-gradient(90deg, #23070b, #4f0b14 45%, #23070b);
  border-block: 1px solid rgba(255, 80, 90, .22);
  overflow: hidden;
}
.track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  padding: .5rem 0;
  animation: ticker 40s linear infinite;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .84rem;
}
.track span {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #ffd0d5;
}
.track span::before {
  content: '•';
  color: var(--cyan);
}
.track.reverse { animation-direction: reverse; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(10, 15, 28, .68);
  border-bottom: 1px solid rgba(110, 130, 170, .24);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}
.brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: .2px;
}
.brand span { color: var(--cyan); }
.main-nav {
  display: flex;
  gap: 1.2rem;
  color: var(--muted);
  font-weight: 600;
}
.main-nav a:hover { color: #f9faff; }
.header-cta {
  display: flex;
  gap: .7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: 999px;
  padding: .72rem 1.18rem;
  font-weight: 700;
  letter-spacing: .2px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--red-a), var(--red-b));
  color: white;
  box-shadow: 0 0 0 2px rgba(255, 46, 77, .15), 0 9px 20px rgba(229, 48, 63, .35);
}
.btn-primary:hover { box-shadow: 0 0 0 2px rgba(255, 46, 77, .22), 0 12px 24px rgba(229, 48, 63, .46); }
.btn-ghost {
  border-color: rgba(124, 161, 210, .45);
  background: rgba(255, 255, 255, .02);
  color: #dfe9ff;
}
.btn-xl {
  padding: .96rem 1.6rem;
  font-size: 1rem;
}
.pulse {
  animation: pulseGlow 2.2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 46, 77, .36), 0 14px 32px rgba(229, 48, 63, .26); }
  50% { box-shadow: 0 0 0 9px rgba(255, 46, 77, 0), 0 14px 32px rgba(229, 48, 63, .46); }
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(2.2rem, 4vw, 4rem) 0 1.1rem;
}
.aurora {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(56px);
  opacity: .26;
  z-index: -1;
}
.aurora-a {
  background: radial-gradient(circle at 40% 40%, #ff2e4d, #2b0715 72%);
  top: -180px;
  left: -180px;
  animation: floaty 14s ease-in-out infinite;
}
.aurora-b {
  background: radial-gradient(circle at 60% 65%, #22d3ee, #091522 72%);
  right: -200px;
  top: -160px;
  animation: floaty 16s ease-in-out infinite reverse;
}
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(24px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 1.25rem;
}
.hero-grid > * { min-width: 0; }
.art-grid > * { min-width: 0; }

.hero-slider {
  position: relative;
  background: linear-gradient(160deg, rgba(13, 22, 39, .96), rgba(9, 14, 26, .92));
  border: 1px solid rgba(127, 156, 202, .2);
  border-radius: 24px;
  padding: 1.55rem 1.8rem 2.2rem;
  box-shadow: var(--shadow);
}
.slide { display: none; }
.slide.active { display: block; animation: fadeSlide .46s ease; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-tag {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--cyan);
  margin: 0 0 .8rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .76rem;
}
h1,h2,h3 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
  margin-top: 0;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: .95rem;
}
.slide h2 { font-size: clamp(1.35rem, 2.7vw, 2rem); margin-bottom: .85rem; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(6, 10, 18, .72);
  border: 1px solid rgba(130, 160, 208, .35);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}
.slider-arrow:hover { border-color: rgba(34, 211, 238, .75); }
.slider-arrow.prev { left: .4rem; }
.slider-arrow.next { right: .4rem; }
.slides { padding-inline: 1.7rem; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
}
.slider-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 0; background: rgba(168, 188, 218, .45); cursor: pointer;
}
.slider-dots button.active { background: var(--cyan); box-shadow: 0 0 0 4px rgba(34,211,238,.2); }

.hero-side {
  display: grid;
  gap: .95rem;
}
.metric-card {
  background: linear-gradient(160deg, var(--panel-0), var(--panel-1));
  border-radius: var(--radius);
  border: 1px solid rgba(130, 162, 206, .21);
  box-shadow: var(--shadow);
  padding: 1rem 1.05rem;
}
.metric-card h3 { margin-bottom: .5rem; }
.mono { font-family: 'IBM Plex Mono', monospace; color: #9ab0d3; }
.address { color: var(--green); font-weight: 700; word-break: break-all; }
.countdown { color: var(--star); font-size: 1.2rem; font-weight: 700; }
.spin-ring {
  position: relative;
}
.spin-ring::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px dashed rgba(34, 211, 238, .35);
  animation: spin 12s linear infinite;
  pointer-events: none;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.breadcrumb-wrap { margin-top: 1.1rem; }
.breadcrumb {
  list-style: none;
  padding: .8rem 1rem;
  margin: 0;
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  background: rgba(17, 27, 46, .78);
  border: 1px solid rgba(120, 150, 197, .24);
  border-radius: 12px;
}
.breadcrumb li + li::before {
  content: '›';
  margin-right: .5rem;
  color: #8da3c4;
}

.section {
  margin-top: 1.35rem;
  background: linear-gradient(170deg, rgba(14, 21, 38, .98), rgba(11, 17, 32, .95));
  border: 1px solid rgba(120, 152, 194, .2);
  border-radius: 20px;
  padding: 1.5rem 1.3rem;
}
.section h2 {
  font-size: clamp(1.38rem, 3vw, 2rem);
  margin-bottom: .9rem;
}
.section p { color: #d6deef; }
.toc ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: .4rem .8rem;
  margin: 0;
  padding-left: 1.1rem;
}
.toc a { color: #b8d8ff; }

.tbl-wrap { max-width: 100%; overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  margin: .5rem 0 1rem;
  min-width: 580px;
}
th, td {
  border: 1px solid rgba(127, 156, 201, .26);
  padding: .68rem;
  vertical-align: top;
}
th {
  background: rgba(34, 211, 238, .12);
  text-align: left;
}

.yedek-box {
  background: rgba(6, 12, 24, .65);
  border: 1px dashed rgba(106, 138, 188, .44);
  border-radius: 14px;
  padding: 1rem;
}

.game-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: .8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .3rem;
}
.game-card {
  scroll-snap-align: start;
  background: rgba(18, 29, 52, .9);
  border: 1px solid rgba(127, 166, 218, .26);
  border-radius: 14px;
  padding: .9rem;
}
.game-card h3 { margin-bottom: .45rem; }

.review-summary {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 1rem;
  align-items: center;
}
.score {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  margin: 0;
  color: var(--star);
}
.score span { font-size: .45em; color: #d9e1ef; }
.bars > div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: .7rem;
  align-items: center;
  margin-bottom: .42rem;
}
.bars b {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--star), #ffe49b);
  width: var(--w);
}
.pros-cons {
  margin-top: .9rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}
.pros-cons > div {
  background: rgba(7, 13, 24, .58);
  border: 1px solid rgba(125, 152, 193, .2);
  border-radius: 12px;
  padding: .85rem;
}
.reviews {
  margin-top: .9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
}
.reviews article {
  background: rgba(9, 15, 27, .8);
  border: 1px solid rgba(118, 150, 198, .25);
  border-radius: 12px;
  padding: .82rem;
}
.reviews h3 { color: var(--green); }

details {
  background: rgba(9, 15, 27, .7);
  border: 1px solid rgba(124, 154, 198, .22);
  border-radius: 12px;
  padding: .76rem .86rem;
  margin-bottom: .66rem;
}
summary { cursor: pointer; font-weight: 700; }
summary::-webkit-details-marker { display: none; }

.event-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}
.event-cards article {
  border: 1px solid rgba(128, 162, 210, .25);
  background: rgba(9, 16, 29, .78);
  border-radius: 12px;
  padding: .85rem;
}

.final-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}

.site-footer {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(115, 146, 192, .25);
  padding: 1.2rem 0 6rem;
  background: #050910;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .95fr .8fr;
  gap: 1rem;
}
.footer-grid ul { margin: 0; padding-left: 1rem; }
.footer-grid li { margin-bottom: .3rem; }

.mobile-dock {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 41;
  background: rgba(6, 10, 18, .92);
  border-top: 1px solid rgba(122, 156, 204, .35);
  padding: .55rem .6rem calc(.55rem + env(safe-area-inset-bottom));
  gap: .5rem;
  grid-template-columns: repeat(3, 1fr);
}
.mobile-dock a {
  text-align: center;
  background: linear-gradient(125deg, #1a243d, #0c1528);
  border: 1px solid rgba(130, 165, 212, .32);
  border-radius: 999px;
  padding: .62rem .35rem;
  font-weight: 700;
}
.mobile-dock a:first-child,
.mobile-dock a:nth-child(2) {
  background: linear-gradient(135deg, var(--red-a), var(--red-b));
  border-color: rgba(255, 72, 99, .6);
}

.to-top {
  position: fixed;
  right: 1rem;
  bottom: 6.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(130, 170, 220, .4);
  background: rgba(11, 18, 34, .82);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: .22s ease;
}
.to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(18px);
  bottom: 1.2rem;
  background: rgba(13, 22, 39, .95);
  border: 1px solid rgba(122, 154, 201, .3);
  color: #d8e5ff;
  padding: .58rem .9rem;
  border-radius: 999px;
  opacity: 0;
  transition: .25s ease;
  z-index: 50;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta .btn { padding: .58rem .85rem; font-size: .9rem; }
  .mobile-dock { display: grid; }
  .site-footer { padding-bottom: 7rem; }
  .event-cards,
  .review-summary,
  .pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .header-cta { gap: .45rem; }
  .header-cta .btn-ghost { display: none; }
  .slides { padding-inline: .8rem; }
  .slider-arrow { width: 36px; height: 36px; }
  .section { padding: 1.2rem .95rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
