*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette from banner */
  --purple:     #6B3FA0;
  --purple-lt:  #8B5CC8;
  --purple-dim: rgba(107,63,160,0.18);
  --navy:       #2A3F6F;
  --navy-lt:    #3A5490;
  --gold:       #D4940A;
  --gold-lt:    #F0B429;
  --gold-dim:   rgba(212,148,10,0.18);
  --brown:      #7A4E2D;
  --cream:      #F5F2EC;
  --off-white:  #EDEAE3;

  --bg-deep:    #0E0C14;
  --bg-card:    rgba(255,255,255,0.03);
  --bg-card-hv: rgba(255,255,255,0.065);
  --border-dim: rgba(255,255,255,0.07);

  --text-primary: #F0EEF8;
  --text-muted:   #7A7A9A;

  --font-display: 'Orbitron', monospace;
  --font-body:    'Space Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* SUBTLE GRID */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,63,160,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,63,160,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

/* AMBIENT GLOW — purple */
body::after {
  content: '';
  position: fixed;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 520px;
  background: radial-gradient(ellipse, rgba(107,63,160,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.glow-gold {
  position: fixed;
  bottom: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(212,148,10,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14,12,20,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(107,63,160,0.25);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: 0.08em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple-lt);
  box-shadow: 0 0 8px var(--purple-lt);
  animation: blink 2.4s infinite;
}

@keyframes blink {
  0%,100% { opacity:1; }
  50% { opacity:0.25; }
}

.nav-links { display: flex; gap: 0; list-style: none; }

.nav-links a {
  display: block;
  padding: 0 20px;
  height: 54px;
  line-height: 54px;
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover { color: var(--gold-lt); border-bottom-color: var(--gold-lt); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
}

/* hoodie rack illustration hint */
.hero-deco {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--purple) 25%,
    var(--navy) 50%,
    var(--gold) 75%,
    transparent 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107,63,160,0.12);
  border: 1px solid rgba(107,63,160,0.35);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-lt);
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-lt);
  animation: blink 2s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8.5vw, 96px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-title .line1 { color: var(--text-primary); display: block; }

.hero-title .line2 {
  display: block;
  /* gradient: purple → gold, matching hoodie colors */
  background: linear-gradient(100deg, var(--purple-lt) 0%, var(--gold-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 24px auto 40px;
  animation: fadeUp 0.6s 0.2s ease both;
  line-height: 1.9;
}

.hero-sub .hl-purple { color: var(--purple-lt); }
.hero-sub .hl-gold   { color: var(--gold-lt); }

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--purple-lt);
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover { background: var(--purple-lt); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold-lt);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 12px 28px;
  border-radius: 4px;
  border: 1px solid rgba(212,148,10,0.35);
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold-lt);
  background: var(--gold-dim);
  transform: translateY(-1px);
}

/* hoodie color swatches below CTA */
.hoodie-swatches {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
  animation: fadeUp 0.6s 0.4s ease both;
}

.swatch {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  opacity: 0.7;
}

.scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-hint svg { width: 16px; height: 16px; }

/* ── SHARED ── */
section { padding: 88px 0; position: relative; z-index: 1; }

.container { max-width: 960px; margin: 0 auto; padding: 0 32px; }

.section-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107,63,160,0.3), rgba(212,148,10,0.3), transparent);
  margin: 0;
  position: relative; z-index: 1;
}

/* ── SCHEDULE ── */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sched-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.sched-card:hover { background: var(--bg-card-hv); transform: translateY(-2px); }

/* top accent bar — hoodie color */
.sched-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.sched-card.monday::before {
  background: linear-gradient(90deg, var(--purple), transparent);
}

.sched-card.friday::before {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.sched-card.monday:hover { border-color: rgba(107,63,160,0.4); }
.sched-card.friday:hover { border-color: rgba(212,148,10,0.4); }

/* hoodie icon corner */
.card-hoodie {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 28px;
  opacity: 0.12;
}

.sched-day {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sched-card.monday .sched-day { color: var(--purple-lt); }
.sched-card.friday .sched-day { color: var(--gold-lt); }

.sched-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.sched-time {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.sched-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.tag {
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 3px;
  border: 1px solid;
  text-transform: uppercase;
}

.tag-purple { border-color: rgba(107,63,160,0.4); color: var(--purple-lt); background: rgba(107,63,160,0.08); }
.tag-gold   { border-color: rgba(212,148,10,0.4);  color: var(--gold-lt);   background: rgba(212,148,10,0.08); }
.tag-navy   { border-color: rgba(58,84,144,0.5);   color: #7A9AD4;          background: rgba(42,63,111,0.12); }

/* ── PLATFORMS ── */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  gap: 12px;
}

.plat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  padding: 22px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.plat-card:hover { background: var(--bg-card-hv); transform: translateY(-2px); }

.plat-card.twitch:hover   { border-color: rgba(145,71,255,0.45); }
.plat-card.youtube:hover  { border-color: rgba(255,60,60,0.4); }
.plat-card.tiktok:hover   { border-color: rgba(107,63,160,0.45); }
.plat-card.discord:hover  { border-color: rgba(88,101,242,0.45); }
.plat-card.devlab:hover   { border-color: rgba(212,148,10,0.45); }

.plat-icon { font-size: 30px; }

.plat-name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plat-desc { font-size: 11px; color: var(--text-muted); line-height: 1.5; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.95;
  margin-bottom: 18px;
}

.about-text p .hl { color: var(--gold-lt); }
.about-text p .hl2 { color: var(--purple-lt); }

/* stats styled like a hoodie rack — 4 "hangers" */
.stats-rack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 16px;
  width: 2px; height: 16px;
  background: var(--purple-lt);
  border-radius: 0 0 2px 2px;
}

.stat-box:nth-child(2n)::before { background: var(--gold-lt); }

.stat-box:hover { border-color: rgba(107,63,160,0.3); }
.stat-box:nth-child(2n):hover { border-color: rgba(212,148,10,0.3); }

.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--purple-lt);
  line-height: 1;
  margin-bottom: 4px;
  margin-top: 8px;
}

.stat-box:nth-child(2n) .stat-number { color: var(--gold-lt); }

.stat-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── CONTACT ── */
.contact-inner {
  max-width: 560px;
}

.contact-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(107,63,160,0.25);
  border-radius: 10px;
  padding: 24px 28px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--gold), transparent);
}

.contact-card:hover {
  background: var(--bg-card-hv);
  border-color: rgba(107,63,160,0.5);
  transform: translateY(-2px);
}

.contact-icon { font-size: 28px; flex-shrink: 0; }

.contact-info { flex: 1; }

.contact-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-email {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: 0.03em;
}

.contact-arrow {
  font-size: 20px;
  color: var(--purple-lt);
  transition: transform 0.2s;
}

.contact-card:hover .contact-arrow { transform: translateX(4px); }

.contact-hint {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-link {
  color: var(--purple-lt);
  text-decoration: none;
  border-bottom: 1px solid rgba(139,92,200,0.35);
  transition: color 0.2s, border-color 0.2s;
}

.contact-link:hover {
  color: var(--gold-lt);
  border-bottom-color: rgba(212,148,10,0.5);
}

/* ── FOOTER ── */
footer {
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-dim);
  position: relative; z-index: 1;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, var(--purple-lt), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-sub { font-size: 11px; color: var(--text-muted); letter-spacing: 0.06em; }

.footer-swatches { display: flex; gap: 6px; align-items: center; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .schedule-grid { grid-template-columns: 1fr; }
  .about-grid    { grid-template-columns: 1fr; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  footer { flex-direction: column; align-items: flex-start; }
}

  to   { opacity: 1; transform: translateY(0); }
}

/* ── TUK mascotte ── */
.tuk-mascot {
  display: inline-block;
  vertical-align: middle;
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(212,148,10,0.4);
  box-shadow: 0 0 16px rgba(212,148,10,0.2);
  margin-right: 12px;
  flex-shrink: 0;
}

.about-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 1rem;
}

.about-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: 0.06em;
}

.about-sub-label {
  font-size: 11px;
  color: var(--text-muted);
}


/* ── AVATAR SMALL ── */
.avatar-small {
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  border: 2px solid rgba(107,63,160,0.5);
  box-shadow: 0 0 16px rgba(107,63,160,0.25);
  flex-shrink: 0;
}


/* ── TUK SECTION ── */
.tuk-section-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

.tuk-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.tuk-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tuk-big {
  width: 140px;
  height: 140px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(212,148,10,0.3));
  animation: tukFloat 3.5s ease-in-out infinite;
}

@keyframes tukFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.tuk-glow {
  position: absolute;
  width: 160px; height: 60px;
  bottom: -10px;
  background: radial-gradient(ellipse, rgba(212,148,10,0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.tuk-bio {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.8;
}

.tuk-interactions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tuk-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.tuk-card:hover {
  background: var(--bg-card-hv);
  border-color: rgba(212,148,10,0.3);
  transform: translateX(4px);
}

.tuk-card-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.tuk-card-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.tuk-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 12px;
}

.tuk-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: rgba(212,148,10,0.08);
  border: 1px solid rgba(212,148,10,0.3);
  border-radius: 3px;
  padding: 4px 10px;
}

.tuk-card-badge::before {
  content: '⭐';
  font-size: 10px;
}

@media (max-width: 640px) {
  .tuk-section-inner {
    grid-template-columns: 1fr;
  }
  .tuk-profile { flex-direction: row; align-items: flex-start; }
  .tuk-big { width: 80px; height: 80px; }
}


/* ── TUK GIF INTERACTIONS ── */
.tuk-big {
  background: transparent;
}

.tuk-card-gif {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

/* sleeping gif has black bg — mix-blend to remove */
#tuk-idle {
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 20px rgba(212,148,10,0.3));
}