/* ============================================
   eycode Studios — Main Stylesheet
   Aesthetic: Dark editorial / studio brand
   Fonts: Syne (display) + DM Sans (body)
   ============================================ */

:root {
  /* Core palette */
  --ink:       #07090f;
  --ink-2:     #0e1220;
  --ink-3:     #151b2e;
  --surface:   #111827;
  --surface-2: #1a2236;

  /* Accent — electric amber/orange */
  --accent:    #ff6b1a;
  --accent-2:  #ffad1f;
  --accent-glow: rgba(255,107,26,0.25);

  /* Purple accent for variety */
  --purple:    #7c3aed;
  --purple-lt: #a78bfa;

  /* Text */
  --txt:       #e2e8f5;
  --txt-2:     #8896b0;
  --txt-3:     #4a5568;

  /* Borders */
  --line:      rgba(255,255,255,0.07);
  --line-2:    rgba(255,255,255,0.12);

  /* Radii */
  --r:  14px;
  --r2: 22px;
  --r3: 50px;
}

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

body {
  background: var(--ink);
  color: var(--txt);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ======== NOISE ======== */
.noise {
  position: fixed; inset: 0; z-index: 1000;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ======== BG GRID ======== */
.bg-grid {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

/* ======== CURSOR ======== */
.c-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 10px var(--accent);
  transition: background 0.2s;
}
.c-ring {
  width: 28px; height: 28px;
  border: 1.5px solid rgba(255,107,26,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}
body:has(a:hover) .c-ring,
body:has(button:hover) .c-ring {
  width: 44px; height: 44px;
  border-color: var(--accent);
}

/* ======== CONTAINER ======== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative; z-index: 1;
}

/* ======== LOGO MARK ======== */
.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--accent-glow);
}
.logo-mark.lm-sm { width: 36px; height: 36px; font-size: 0.85rem; border-radius: 8px; }
.lm-e { color: #000; }
.lm-c { color: rgba(0,0,0,0.5); }

/* ======== NAVBAR ======== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; gap: 2.5rem;
  padding: 1.1rem 3rem;
  background: rgba(7,9,15,0.8);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s, background 0.3s;
}
.nav.solid { background: rgba(7,9,15,0.97); }

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
  margin-right: auto;
}
.logo-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--txt);
  line-height: 1.1;
}
.logo-label em {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--txt-2);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  color: var(--txt-2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--txt); }

.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ======== MOBILE DRAWER ======== */
.drawer {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: min(300px, 80vw);
  background: var(--ink-2);
  border-left: 1px solid var(--line-2);
  z-index: 950;
  padding: 5rem 2.5rem 2.5rem;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
}
.drawer.open { right: 0; }
.drawer ul { list-style: none; }
.drawer ul li { margin: 1.4rem 0; }
.drawer ul li a {
  color: var(--txt);
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  transition: color 0.2s;
}
.drawer ul li a:hover { color: var(--accent); }
.drawer-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  color: var(--txt-2); font-size: 1.2rem;
}
.drawer-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 940;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.drawer-backdrop.show { display: block; }

/* ======== SHARED SECTION STYLES ======== */
.section-chip {
  display: inline-block;
  background: rgba(255,107,26,0.12);
  color: var(--accent);
  border: 1px solid rgba(255,107,26,0.25);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--r3);
  margin-bottom: 1.1rem;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.section-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: var(--txt);
}
.section-head p {
  color: var(--txt-2);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}
.section-head.sh-left { text-align: left; }
.section-head.sh-left p { margin: 0; }
section h2 em { color: var(--accent); font-style: normal; }

/* ======== BUTTONS ======== */
.btn-fill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.8rem;
  border-radius: var(--r3);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-fill:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-ghost {
  display: inline-flex; align-items: center;
  color: var(--txt-2);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.8rem;
  border-radius: var(--r3);
  border: 1px solid var(--line-2);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  color: var(--txt);
  border-color: var(--accent);
  background: rgba(255,107,26,0.06);
}

/* ======== HERO ======== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 9rem 3rem 5rem;
  position: relative; overflow: hidden;
}

#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.5;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 660px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.7s ease both;
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.ht-line { display: block; }
.l1 {
  color: var(--txt);
  animation: fadeUp 0.7s ease 0.1s both;
}
.l2 {
  color: var(--txt);
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-title em {
  font-style: normal;
  -webkit-text-stroke: 2px var(--accent);
  color: transparent;
}
.hero-body {
  color: var(--txt-2);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s ease 0.3s both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.4s both;
}

/* DECO CARDS */
.hero-deco {
  position: absolute;
  right: 4rem; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 1rem;
  z-index: 2;
  animation: fadeLeft 0.8s ease 0.5s both;
}
.deco-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 1.1rem 1.4rem;
  min-width: 160px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.deco-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}
.dc2::before { background: var(--purple-lt); }
.dc3::before { background: var(--accent-2); }
.deco-card:hover { transform: translateX(-4px); box-shadow: 4px 0 20px rgba(255,107,26,0.15); }
.dc-emoji { font-size: 1.4rem; display: block; margin-bottom: 0.3rem; }
.dc-label { display: block; font-size: 0.7rem; color: var(--txt-3); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.2rem; }
.deco-card strong { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--txt); }

/* SCROLL HINT */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 3rem;
  display: flex; align-items: center; gap: 0.75rem;
  z-index: 2;
  animation: fadeUp 1s ease 0.8s both;
}
.scroll-track {
  width: 40px; height: 2px;
  background: var(--line-2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.scroll-thumb {
  width: 50%; height: 100%;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollSlide 1.8s ease-in-out infinite;
}
@keyframes scrollSlide {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(200%); }
}
.hero-scroll span { font-size: 0.72rem; color: var(--txt-3); letter-spacing: 0.15em; text-transform: uppercase; }

/* ======== ABOUT ======== */
.about {
  padding: 9rem 0;
  position: relative; z-index: 1;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.about-text h2 em { font-style: normal; color: var(--accent); }
.about-text p {
  color: var(--txt-2);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.about-pills {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 1.5rem;
}
.about-pills span {
  background: var(--ink-3);
  border: 1px solid var(--line-2);
  color: var(--txt-2);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: var(--r3);
  letter-spacing: 0.04em;
}

.about-visual {
  display: flex; justify-content: center;
}
.av-box {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r2);
  padding: 2.5rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.av-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.av-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.6;
}
.av-badge {
  display: flex; align-items: center; gap: 0.75rem;
  position: relative; z-index: 1;
  margin-bottom: 2.5rem;
}
.avb-logo {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 0 20px var(--accent-glow);
}
.av-badge span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.av-stat-row {
  display: flex; gap: 1.5rem;
  position: relative; z-index: 1;
}
.av-stat { flex: 1; text-align: center; }
.avs-n {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.avs-l { font-size: 0.75rem; color: var(--txt-3); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

/* ======== GAMES ======== */
.games {
  padding: 9rem 0;
  position: relative; z-index: 1;
}
.games::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}

/* FEATURED GAME */
.game-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r2);
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}
.game-featured::before {
  content: 'FEATURED';
  position: absolute; top: 1.5rem; left: -2.5rem;
  background: var(--accent);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 0.4rem 3rem;
  transform: rotate(-45deg);
}

.gf-media {
  background: var(--ink-2);
  min-height: 480px;
  display: flex; flex-direction: column;
}
.gf-img-wrap {
  flex: 1;
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.gf-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gf-placeholder {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,107,26,0.08), var(--ink-2));
}
.gfp-orb {
  position: relative;
  width: 130px; height: 130px;
  display: flex; align-items: center; justify-content: center;
}
.gfp-core {
  width: 60px; height: 60px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ff6b1a, #7c3aed 70%);
  box-shadow: 0 0 30px rgba(255,107,26,0.5);
  animation: coreBreath 3s ease-in-out infinite;
}
@keyframes coreBreath { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
.gfp-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid transparent;
  animation: ringOrbit 6s linear infinite;
}
.gfp-ring.r1 { width: 80px; height: 80px; border-top-color: var(--accent); animation-duration: 4s; }
.gfp-ring.r2 { width: 106px; height: 106px; border-right-color: var(--purple-lt); animation-direction: reverse; animation-duration: 7s; }
.gfp-ring.r3 { width: 130px; height: 130px; border-bottom-color: rgba(255,107,26,0.4); animation-duration: 10s; }
@keyframes ringOrbit { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.gfp-icon { position: absolute; font-size: 1.5rem; z-index: 2; filter: drop-shadow(0 0 8px var(--accent)); }
.gfp-hint {
  font-size: 0.78rem;
  color: var(--txt-3);
  text-align: center;
  line-height: 1.7;
}
.gfp-hint code {
  background: rgba(255,107,26,0.1);
  color: var(--accent);
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  font-size: 0.73rem;
}

/* SCREENSHOTS STRIP */
.gf-screenshots {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
  padding: 4px;
}
.gf-ss {
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--ink-3);
}
.gf-ss img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ss-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  font-size: 1rem;
}
.ss-placeholder small { font-size: 0.6rem; color: var(--txt-3); }

/* GAME INFO */
.gf-info {
  padding: 3rem 2.5rem 3rem 0;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.gf-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.gf-badges span {
  font-size: 0.72rem; font-weight: 600;
  padding: 0.3rem 0.75rem; border-radius: var(--r3);
  background: var(--ink-3); border: 1px solid var(--line-2);
  color: var(--txt-2);
}
.badge-status.live { background: rgba(34,197,94,0.12); border-color: rgba(34,197,94,0.3); color: #4ade80; }

.gf-title {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  color: var(--txt); line-height: 1;
}
.gf-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  color: var(--accent); letter-spacing: 0.05em;
}
.gf-desc { color: var(--txt-2); font-size: 0.9rem; line-height: 1.75; }

.gf-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
}
.gf-feat {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--txt-2); font-weight: 500;
}
.gf-feat span { font-size: 1rem; }

.gf-rating {
  display: flex; align-items: center; gap: 0.6rem;
}
.gf-stars { color: #fbbf24; font-size: 1rem; letter-spacing: 0.05em; }
.gf-score { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--txt); }
.gf-rcount { font-size: 0.75rem; color: var(--txt-3); }

.gf-actions { display: flex; gap: 1rem; flex-wrap: wrap; padding-top: 0.5rem; }

/* COMING SOON CARDS */
.games-more {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.game-soon {
  background: var(--surface);
  border: 1px dashed var(--line-2);
  border-radius: var(--r2);
  position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.game-soon:hover { border-color: rgba(255,107,26,0.3); }
.gs-inner {
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.gs-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple-lt);
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  padding: 0.3rem 0.75rem; border-radius: var(--r3);
}
.game-soon h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: var(--txt);
}
.game-soon p { color: var(--txt-2); font-size: 0.875rem; line-height: 1.7; }

/* ======== CHANNELS ======== */
.channels {
  padding: 9rem 0;
  position: relative; z-index: 1;
}
.channels::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.channels-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.channel-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r2);
  padding: 2.5rem;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column; gap: 1.25rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.channel-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255,107,26,0.1);
  border-color: rgba(255,107,26,0.3);
}
.channel-card:hover::after { transform: scaleX(1); }
.cc-purple::after { background: linear-gradient(90deg, var(--purple), var(--purple-lt)); }
.cc-purple:hover { box-shadow: 0 20px 50px rgba(124,58,237,0.12); border-color: rgba(124,58,237,0.3); }

.cc-top {
  display: flex; align-items: center; gap: 1rem;
}
.cc-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem;
  color: #fff; flex-shrink: 0;
}
.ca-orange { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.ca-purple { background: linear-gradient(135deg, var(--purple), var(--purple-lt)); }
.cc-meta { flex: 1; }
.cc-handle { display: block; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--txt); }
.cc-platform { font-size: 0.72rem; color: var(--txt-3); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.cc-arrow { font-size: 1.3rem; color: var(--txt-3); transition: color 0.2s, transform 0.2s; }
.channel-card:hover .cc-arrow { color: var(--accent); transform: translate(2px,-2px); }
.cc-desc { color: var(--txt-2); font-size: 0.875rem; line-height: 1.75; }
.cc-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cc-tags span {
  font-size: 0.72rem; font-weight: 500;
  background: var(--ink-3); border: 1px solid var(--line);
  color: var(--txt-3); padding: 0.25rem 0.65rem; border-radius: var(--r3);
}

/* ======== CONTACT ======== */
.contact {
  padding: 9rem 0;
  position: relative; z-index: 1;
}
.contact::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.contact-cards {
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-card {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  text-decoration: none; color: inherit;
  transition: transform 0.2s, border-color 0.2s;
}
.contact-card:hover { transform: translateX(5px); border-color: var(--accent); }
.contact-icon { font-size: 1.4rem; width: 40px; text-align: center; }
.contact-card div { display: flex; flex-direction: column; gap: 0.1rem; }
.contact-card strong { font-weight: 600; font-size: 0.9rem; color: var(--txt); }
.contact-card span { font-size: 0.8rem; color: var(--txt-2); }

/* ======== FOOTER ======== */
.footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
  position: relative; z-index: 1;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  display: flex; align-items: center; gap: 0.75rem;
}
.footer-brand strong { display: block; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; }
.footer-brand span { display: block; font-size: 0.72rem; color: var(--txt-3); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-nav a {
  color: var(--txt-2); text-decoration: none;
  font-size: 0.85rem; font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.78rem; color: var(--txt-3);
}

/* ======== ANIMATIONS ======== */
@keyframes fadeUp   { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeLeft { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }

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

/* ======== RESPONSIVE ======== */
@media(max-width: 1000px) {
  .hero-deco { display: none; }
  .about-grid, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .game-featured { grid-template-columns: 1fr; }
  .gf-info { padding: 0 2rem 2rem; }
  .game-featured::before { display: none; }
}
@media(max-width: 760px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 8rem 1.5rem 5rem; }
  .hero-title { font-size: clamp(2.8rem, 10vw, 5rem); }
  .channels-grid, .games-more { grid-template-columns: 1fr; }
  .gf-screenshots { grid-template-columns: repeat(2,1fr); }
  .about, .games, .channels, .contact, .footer { padding-left: 0; padding-right: 0; }
}
@media(max-width: 480px) {
  .av-stat-row { gap: 0.75rem; }
  .gf-features { grid-template-columns: 1fr; }
}
