:root {
  --bg: #050505;
  --surface: rgba(7,7,7,.58);
  --surface-strong: rgba(9,9,9,.72);
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.22);
  --text: #f5f5f5;
  --muted: #c1c1c1;
  --muted-2: #8a8a8a;
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050505;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-background {
  position: fixed;
  z-index: -3;
  inset: -8vh -6vw;
  background: url('assets/site-bg.png') center center / cover no-repeat;
  transform: translate3d(var(--bg-x, 0px), var(--bg-y, 0px), 0) scale(var(--bg-scale, 1.08));
  transform-origin: center center;
  will-change: transform;
  filter: brightness(.72) contrast(1.04);
}

.site-vignette {
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 34%, rgba(0,0,0,.05) 0%, rgba(0,0,0,.16) 42%, rgba(0,0,0,.54) 100%),
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.38) 55%, rgba(0,0,0,.62) 100%);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.topbar {
  width: min(1220px, calc(100% - 28px));
  min-height: 78px;
  margin: 14px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  position: sticky;
  top: 14px;
  z-index: 20;
  background: linear-gradient(180deg, rgba(5,5,5,.80), rgba(5,5,5,.54));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 36px rgba(0,0,0,.22);
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 5px 14px rgba(255,255,255,.12));
  transition: transform .28s ease, filter .28s ease;
}
.brand:hover .brand-logo {
  transform: translateY(-2px) rotate(-2deg) scale(1.06);
  filter: drop-shadow(0 8px 20px rgba(255,255,255,.24));
}

nav { display: flex; gap: 28px; }
nav a {
  font-size: 13px;
  color: var(--muted);
  transition: color .2s ease, transform .2s ease;
}
nav a:hover { color: #fff; transform: translateY(-1px); }

.hero {
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 0 96px;
}
.hero-content {
  width: min(820px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 58px 28px;
  border-radius: 36px;
  background: radial-gradient(circle at 50% 45%, rgba(0,0,0,.34), rgba(0,0,0,.05) 70%);
}
.hero-logo {
  width: clamp(175px, 23vw, 305px);
  filter: drop-shadow(0 18px 38px rgba(255,255,255,.16));
  transition: transform .35s ease, filter .35s ease;
}
.hero-logo:hover {
  transform: translateY(-4px) scale(1.025);
  filter: drop-shadow(0 22px 46px rgba(255,255,255,.24));
}
.hero-tagline {
  margin: 20px 0 0;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #e0e0e0;
  text-shadow: 0 2px 18px rgba(0,0,0,.65);
}
.hero-copy {
  max-width: 690px;
  margin: 18px auto 0;
  color: #dedede;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.62;
  text-shadow: 0 2px 18px rgba(0,0,0,.75);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(180deg, #fff 0%, #dedede 100%);
  color: #060606;
  border-color: rgba(255,255,255,.55);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}
.btn-primary:hover { background: #fff; box-shadow: 0 14px 34px rgba(0,0,0,.30); }
.btn-ghost { background: rgba(0,0,0,.34); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,.10); border-color: var(--line-strong); }

.section { padding: 96px 0; }
.section-kicker {
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 700;
  color: #bcbcbc;
  text-shadow: 0 2px 14px rgba(0,0,0,.65);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  margin-top: 24px;
}
.about-heading,
.about-card,
.contact-card,
.schedule-card-shell,
.trailer-copy,
.trailer-video-shell,
.link-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(12,12,12,.68), rgba(4,4,4,.48));
  backdrop-filter: blur(16px) saturate(105%);
  -webkit-backdrop-filter: blur(16px) saturate(105%);
  box-shadow: 0 20px 55px rgba(0,0,0,.22);
}

.about-heading,
.about-card { padding: 34px; min-height: 340px; border-radius: var(--radius); }
.about-heading {
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.about-heading::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -70px;
  background: url('assets/doddi-logo-transparent.png') center/contain no-repeat;
  opacity: .10;
  transform: rotate(8deg);
}
.about-heading h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(42px, 5.7vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
}
.about-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}
.about-card p { margin: 0 0 18px; }
.about-card p:last-child { margin-bottom: 0; }
.about-card-with-face {
  position: relative;
  overflow: hidden;
  padding-right: 132px;
}
.about-copy { position: relative; z-index: 1; }
.about-face-wrap {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 88px;
  height: 88px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.about-face-wrap:hover {
  transform: translateY(-5px) rotate(-2deg) scale(1.04);
  box-shadow: 0 18px 38px rgba(0,0,0,.46), 0 0 22px rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.26);
}
.about-face { width: 100%; height: 100%; object-fit: cover; opacity: .94; }

.trailer-card {
  margin-top: 24px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
  align-items: stretch;
}
.trailer-copy,
.trailer-video-shell {
  border-radius: var(--radius);
  overflow: hidden;
}
.trailer-copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  position: relative;
}
.trailer-copy::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -80px;
  bottom: -100px;
  background: url('assets/doddi-logo-transparent.png') center/contain no-repeat;
  opacity: .08;
}
.trailer-copy > * { position: relative; z-index: 1; }
.trailer-label {
  font-size: 11px;
  letter-spacing: .18em;
  color: #c8c8c8;
  font-weight: 700;
}
.trailer-copy h2 {
  margin: 14px 0 14px;
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1;
  letter-spacing: -.05em;
}
.trailer-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.trailer-video-shell {
  min-height: 360px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trailer-video-shell video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.link-card {
  min-height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-radius: var(--radius);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.link-card::before {
  content: "";
  position: absolute;
  width: 55%;
  height: 170%;
  left: -70%;
  top: -35%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transition: left .55s ease;
}
.link-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 65px rgba(0,0,0,.32);
  background: linear-gradient(145deg, rgba(18,18,18,.78), rgba(5,5,5,.58));
}
.link-card:hover::before { left: 120%; }
.link-card > * { position: relative; z-index: 2; }
.platform-icon {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 116px;
  height: 116px;
  z-index: 1;
  opacity: .78;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, opacity .25s ease, filter .25s ease;
}
.link-card:hover .platform-icon {
  transform: translate(-50%, -50%) scale(1.08);
  opacity: .96;
  filter: drop-shadow(0 0 22px rgba(255,255,255,.10));
}
.platform-icon svg {
  width: 100%;
  height: 100%;
  fill: rgba(255,255,255,.90);
  filter: drop-shadow(0 0 16px rgba(255,255,255,.12));
}
.platform-icon-discord img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 16px rgba(255,255,255,.12));
  opacity: .96;
}
.link-kicker { font-size: 11px; letter-spacing: .18em; color: #d5d5d5; font-weight: 700; }
.link-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -.045em; }
.link-sub { font-size: 14px; color: #cecece; }
.link-arrow { position: absolute; top: 22px; right: 24px; font-size: 24px; color: #eee; }

.schedule-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  margin-top: 24px;
}
.schedule-card-shell {
  padding: 34px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
}
.status-topline { font-size: 11px; letter-spacing: .18em; color: #b8b8b8; font-weight: 700; }
.status-badge-wrap { margin-top: 16px; }
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #d7d7d7;
}
.status-badge.live {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 0 24px rgba(255,255,255,.10);
}
.status-badge.checking {
  color: #e8e8e8;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.status-card h2,
.schedule-card h3 {
  margin: 16px 0 0;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1;
  letter-spacing: -.05em;
}
.status-card p,
.schedule-card p,
.schedule-note { color: var(--muted); }
.status-card p,
.schedule-card p { margin: 14px 0 0; font-size: 18px; line-height: 1.65; }
.schedule-note { margin-top: 14px; font-size: 13px; }

.contact-card {
  margin-top: 24px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
  border-radius: var(--radius);
}
.contact-card h2 {
  margin: 12px 0 0;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1;
  letter-spacing: -.05em;
}
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.email-link {
  font-size: clamp(23px, 3vw, 36px);
  letter-spacing: -.035em;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 5px;
}
.copy-btn {
  border: 1px solid var(--line);
  background: rgba(0,0,0,.28);
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
}
.copy-btn:hover { color: #fff; border-color: var(--line-strong); }

.footer {
  min-height: 96px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 12px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px) scale(.99);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.2,1);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 860px) {
  .about-grid,
  .trailer-card,
  .schedule-grid,
  .contact-card { grid-template-columns: 1fr; }
  .hero { min-height: 760px; }
}

@media (max-width: 720px) {
  .wrap { width: min(100% - 24px, 1180px); }
  .topbar { min-height: 72px; }
  nav { gap: 15px; }
  nav a { font-size: 12px; }
  .hero { min-height: 690px; padding: 44px 0 70px; }
  .hero-content { padding: 44px 18px; }
  .hero-tagline { line-height: 1.6; }
  .section { padding: 72px 0; }
  .links-grid { grid-template-columns: 1fr; }
  .about-heading,
  .about-card,
  .trailer-copy,
  .contact-card,
  .schedule-card-shell { padding: 24px; }
  .platform-icon { width: 90px; height: 90px; }
  .about-card-with-face { padding-right: 24px; padding-bottom: 118px; }
  .about-face-wrap { right: 20px; bottom: 20px; width: 74px; height: 74px; border-radius: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .site-background { transform: scale(1.08) !important; }
  .reveal-on-scroll { opacity: 1 !important; transform: none !important; }
}
