@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --purple: #9146FF;
  --purple-dark: #6441A5;
  --purple-light: #BF94FF;
  --bg-dark: #0E0E10;
  --bg-card: #18181B;
  --bg-card2: #1F1F23;
  --text-primary: #EFEFF1;
  --text-secondary: #ADADB8;
  --text-muted: #808080;
  --accent-green: #00C853;
  --accent-red: #FF4444;
  --telegram: #2AABEE;
  --border: rgba(145, 70, 255, 0.2);
  --glow: 0 0 30px rgba(145, 70, 255, 0.4);
  --glow-strong: 0 0 60px rgba(145, 70, 255, 0.6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--purple-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(14, 14, 16, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 40px;
  background: rgba(14, 14, 16, 0.98);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--purple);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: white;
  box-shadow: 0 0 15px rgba(145, 70, 255, 0.5);
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
  background: rgba(145, 70, 255, 0.15);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
}

.nav-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 68, 68, 0.15);
  border: 1px solid rgba(255, 68, 68, 0.3);
  color: var(--accent-red);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-red);
  border-radius: 50%;
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 40px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(145, 70, 255, 0.12) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(100, 65, 165, 0.08) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(145, 70, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 70, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--purple-light);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) translateX(30px); opacity: 0; }
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(145, 70, 255, 0.15);
  border: 1px solid var(--border);
  color: var(--purple-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--purple-light) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::before { opacity: 1; }

.btn-twitch {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(145, 70, 255, 0.4);
}

.btn-twitch:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(145, 70, 255, 0.6);
}

.btn-telegram {
  background: linear-gradient(135deg, var(--telegram) 0%, #1a8ec9 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(42, 171, 238, 0.4);
}

.btn-telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42, 171, 238, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--purple);
  background: rgba(145, 70, 255, 0.1);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== AVATAR CARD ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar-card {
  position: relative;
  width: 340px;
  height: 400px;
}

.avatar-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(145, 70, 255, 0.3) 0%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.avatar-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--bg-card2) 0%, var(--bg-card) 100%);
  border-radius: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

.avatar-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(145, 70, 255, 0.05) 25%, transparent 50%);
  animation: rotate-bg 8s linear infinite;
}

@keyframes rotate-bg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.avatar-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 900;
  color: white;
  border: 4px solid rgba(145, 70, 255, 0.5);
  box-shadow: 0 0 30px rgba(145, 70, 255, 0.5);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  letter-spacing: -2px;
}

.avatar-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.avatar-tag {
  font-size: 14px;
  color: var(--purple-light);
  font-weight: 500;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.avatar-badges {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-streamer {
  background: rgba(145, 70, 255, 0.2);
  border: 1px solid rgba(145, 70, 255, 0.4);
  color: var(--purple-light);
}

.badge-live {
  background: rgba(255, 68, 68, 0.2);
  border: 1px solid rgba(255, 68, 68, 0.4);
  color: #FF6B6B;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(255, 68, 68, 0); }
}

.floating-card {
  position: absolute;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: float-card 4s ease-in-out infinite;
  z-index: 2;
}

.floating-card:nth-child(2) { animation-delay: -2s; }

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

.card-viewers {
  bottom: 30px;
  right: -30px;
}

.card-followers {
  top: 30px;
  left: -30px;
}

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.card-icon-purple { background: rgba(145, 70, 255, 0.2); }
.card-icon-green { background: rgba(0, 200, 83, 0.2); }

.card-info { }
.card-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.card-lbl {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== SECTION SHARED ===== */
section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(145, 70, 255, 0.1);
  border: 1px solid var(--border);
  color: var(--purple-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== NEXT STREAM SECTION ===== */
.next-stream-section {
  padding: 0 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.next-stream-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card2) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.next-stream-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--purple-light) 50%, var(--purple) 100%);
}

.next-stream-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.next-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--purple-light);
  margin-bottom: 12px;
}

.next-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.next-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.next-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.countdown-grid {
  display: flex;
  gap: 12px;
}

.countdown-block {
  background: rgba(145, 70, 255, 0.1);
  border: 1px solid rgba(145, 70, 255, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  min-width: 70px;
}

.countdown-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--purple-light);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-lbl {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== SCHEDULE CARDS ===== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.schedule-card:hover {
  transform: translateY(-4px);
  border-color: rgba(145, 70, 255, 0.4);
  box-shadow: 0 12px 40px rgba(145, 70, 255, 0.15);
}

.schedule-card.upcoming::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--purple);
  border-radius: 3px 0 0 3px;
}

.schedule-card.live::before {
  background: var(--accent-red);
  box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.sc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.sc-day {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sc-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sc-status.upcoming-badge {
  background: rgba(145, 70, 255, 0.15);
  color: var(--purple-light);
  border: 1px solid rgba(145, 70, 255, 0.3);
}

.sc-status.live-badge {
  background: rgba(255, 68, 68, 0.15);
  color: #FF6B6B;
  border: 1px solid rgba(255, 68, 68, 0.3);
  animation: pulse-badge 2s infinite;
}

.sc-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.sc-game {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 14px;
}

.sc-time {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.sc-duration {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== SOCIALS SECTION ===== */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.social-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 20px;
}

.social-card.twitch-card::after { background: radial-gradient(ellipse at 50% 0%, rgba(145,70,255,0.1) 0%, transparent 70%); }
.social-card.tg-card::after { background: radial-gradient(ellipse at 50% 0%, rgba(42,171,238,0.1) 0%, transparent 70%); }

.social-card:hover::after { opacity: 1; }

.social-card:hover {
  transform: translateY(-6px);
  border-color: rgba(145, 70, 255, 0.5);
}

.social-card.tg-card:hover { border-color: rgba(42, 171, 238, 0.5); }

.social-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  position: relative;
  z-index: 1;
}

.social-icon.twitch-icon {
  background: linear-gradient(135deg, rgba(145,70,255,0.3), rgba(145,70,255,0.1));
  border: 1px solid rgba(145,70,255,0.4);
  box-shadow: 0 8px 24px rgba(145,70,255,0.2);
}

.social-icon.tg-icon {
  background: linear-gradient(135deg, rgba(42,171,238,0.3), rgba(42,171,238,0.1));
  border: 1px solid rgba(42,171,238,0.4);
  box-shadow: 0 8px 24px rgba(42,171,238,0.2);
}

.social-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.social-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.social-link-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-light);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: gap 0.2s;
}

.social-card.tg-card .social-link-text { color: var(--telegram); }
.social-card:hover .social-link-text { gap: 10px; }

/* ===== ABOUT SECTIONS ===== */
.about-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.about-img-box {
  background: linear-gradient(135deg, var(--bg-card2), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  font-weight: 900;
  color: white;
  margin: 0 auto 24px;
  border: 5px solid rgba(145, 70, 255, 0.4);
  box-shadow: 0 0 40px rgba(145, 70, 255, 0.4);
  letter-spacing: -2px;
}

.about-name { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.about-role { font-size: 15px; color: var(--purple-light); font-weight: 600; margin-bottom: 20px; }

.about-info-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-bio {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.highlight-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
}

.highlight-item:hover {
  border-color: rgba(145,70,255,0.4);
  transform: translateY(-2px);
}

.highlight-val {
  font-size: 26px;
  font-weight: 800;
  color: var(--purple-light);
  margin-bottom: 4px;
}

.highlight-key {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}

.game-card:hover {
  border-color: rgba(145,70,255,0.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(145,70,255,0.1);
}

.game-emoji { font-size: 36px; margin-bottom: 12px; display: block; }
.game-title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.game-tag { font-size: 12px; color: var(--text-muted); }

/* ===== FULL SCHEDULE PAGE ===== */
.page-header {
  padding: 120px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.schedule-full {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 100px;
}

.week-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  padding: 30px 0 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 20px;
}

.week-label:first-child { border-top: none; margin-top: 0; padding-top: 0; }

.schedule-list { display: flex; flex-direction: column; gap: 12px; }

.sched-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all 0.25s;
}

.sched-row:hover {
  border-color: rgba(145,70,255,0.35);
  transform: translateX(4px);
}

.sched-date-col { }
.sched-date { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.sched-time-txt { font-size: 13px; color: var(--text-muted); }

.sched-main { }
.sched-game-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple-light);
  margin-bottom: 4px;
}
.sched-title { font-size: 16px; font-weight: 700; color: var(--text-primary); }

.sched-actions { display: flex; gap: 8px; align-items: center; }

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 8px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--purple-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-socials { display: flex; gap: 12px; }

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s;
}

.footer-social-btn:hover {
  border-color: var(--purple);
  background: rgba(145,70,255,0.1);
  transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NOTIFICATION TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon { font-size: 20px; }
.toast-text { font-size: 14px; font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }
  
  .hero { padding: 90px 20px 40px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-desc { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .avatar-card { width: 280px; height: 340px; }
  .floating-card { display: none; }
  
  section { padding: 60px 20px; }
  .next-stream-section { padding: 0 20px 60px; }
  .next-stream-inner { grid-template-columns: 1fr; }
  .countdown-grid { justify-content: center; }
  
  .about-grid { grid-template-columns: 1fr; }
  
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  
  .sched-row { grid-template-columns: 1fr; }
  .page-header { padding: 100px 20px 40px; }
  .schedule-full { padding: 0 20px 60px; }
}

@media (max-width: 600px) {
  .countdown-block { min-width: 55px; padding: 12px 14px; }
  .countdown-num { font-size: 26px; }
  .hero-title { font-size: 38px; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
}
