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

:root {
  --red: #c0392b;
  --red-bright: #e74c3c;
  --red-glow: #ff2d1a;
  --purple: #8e44ad;
  --purple-bright: #9b59b6;
  --purple-glow: #a855f7;
  --black: #0a0a0c;
  --black-2: #111116;
  --black-3: #18181f;
  --black-4: #1e1e28;
  --grey: #2a2a38;
  --grey-light: #3d3d52;
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
}

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

html { scroll-behavior: smooth; }

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

/* ── BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% -10%, rgba(192,57,43,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 110%, rgba(142,68,173,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(142,68,173,0.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Hex grid overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52' viewBox='0 0 60 52'%3E%3Cpath d='M15 0 L45 0 L60 26 L45 52 L15 52 L0 26 Z' fill='none' stroke='rgba(255,255,255,0.02)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── SCANLINE EFFECT ── */
.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
  pointer-events: none;
  z-index: 1;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192,57,43,0.2);
}

nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), var(--purple), transparent);
}

.nav-logo {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--red-bright), var(--purple-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

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

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red-bright);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  animation: pulse-dot 1.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.live-dot.offline { background: var(--text-muted); animation: none; }

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

.hero-content {
  max-width: 900px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
}

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

.avatar-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--red), var(--purple), var(--red-bright), var(--purple-glow), var(--red));
  animation: spin-ring 4s linear infinite;
  filter: blur(2px);
}

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

.avatar-ring-2 {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--black);
}

.hero-avatar {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.1);
}

.avatar-placeholder {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 2px solid rgba(255,255,255,0.1);
}

.hero-text { }

.hero-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  border: 1px solid rgba(192,57,43,0.4);
  padding: 4px 12px;
  margin-bottom: 1rem;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  background: rgba(192,57,43,0.08);
}

.hero-name {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--red-bright) 50%, var(--purple-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.hero-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.badge {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid var(--grey-light);
  color: var(--text-muted);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.badge.red { border-color: rgba(192,57,43,0.5); color: var(--red-bright); background: rgba(192,57,43,0.06); }
.badge.purple { border-color: rgba(142,68,173,0.5); color: var(--purple-bright); background: rgba(142,68,173,0.06); }

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--red), #a93226);
  color: white;
  border: none;
  cursor: pointer;
  position: relative;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.25s;
  box-shadow: 0 0 20px rgba(192,57,43,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(192,57,43,0.5);
  background: linear-gradient(135deg, var(--red-bright), var(--red));
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 28px;
  text-decoration: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--grey-light);
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.25s;
}

.btn-secondary:hover {
  border-color: var(--purple-bright);
  color: var(--purple-bright);
  background: rgba(142,68,173,0.08);
}

/* LIVE BANNER */
.live-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 14px 20px;
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.3);
  margin-bottom: 1.5rem;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  animation: live-glow 2s ease-in-out infinite;
}

@keyframes live-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(192,57,43,0.15); }
  50% { box-shadow: 0 0 20px rgba(192,57,43,0.35); }
}

.live-banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-bright);
  flex-shrink: 0;
  animation: pulse-dot 1.2s ease-in-out infinite;
}

.live-banner-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
}

.live-banner-viewers {
  margin-left: auto;
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  color: var(--red-bright);
}

/* ── SECTIONS ── */
section {
  position: relative;
  z-index: 2;
  padding: 80px 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  background: linear-gradient(135deg, var(--text), var(--purple-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto 0;
  max-width: 200px;
}

.section-divider::before, .section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.section-divider span {
  color: var(--red);
  font-size: 0.8rem;
}

.container { max-width: 1100px; margin: 0 auto; }

/* ── SCHEDULE ── */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.schedule-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 1.2rem 1.5rem;
  position: relative;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: border-color 0.2s;
}

.schedule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), var(--purple));
}

.schedule-card:hover { border-color: rgba(192,57,43,0.3); }

.schedule-day {
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.4rem;
}

.schedule-time {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.schedule-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.no-schedule {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  padding: 2rem;
}

/* ── PANELS ── */
.panels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.panel-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.panel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(142,68,173,0.3);
}

.panel-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.panel-body {
  padding: 1.25rem;
}

.panel-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.panel-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.panel-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-bright);
  text-decoration: none;
}

.panel-link:hover { color: var(--red-bright); }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--black-3);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 0.75rem 0.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-size: 0.8rem;
  color: var(--text);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-caption { opacity: 1; }

/* ── SOCIALS ── */
.socials-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--grey-light);
  background: var(--glass);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.25s;
}

.social-btn:hover {
  background: rgba(142,68,173,0.12);
  border-color: var(--purple-bright);
  color: var(--purple-bright);
  transform: translateY(-2px);
}

.social-btn.twitch:hover {
  background: rgba(145,70,255,0.12);
  border-color: #9146ff;
  color: #9146ff;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

footer::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), var(--purple), transparent);
  margin-bottom: 2rem;
}

/* ── SHOP ── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.shop-card {
  display: block;
  text-decoration: none;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
}

.shop-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.06), rgba(142,68,173,0.06));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.shop-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192,57,43,0.4);
  box-shadow: 0 8px 30px rgba(192,57,43,0.15);
}

.shop-card:hover::before { opacity: 1; }

.shop-card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--black-3);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
}

.shop-card:hover .shop-card-img { transform: scale(1.04); }

.shop-card-body {
  position: relative;
  z-index: 2;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-top: 1px solid var(--glass-border);
}

.shop-card-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.3;
}

.shop-card-price {
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red-bright);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── SECTION SEPARATORS ── */
.sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  margin: 0 2rem;
  position: relative;
  z-index: 2;
}

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

.hero-content > * {
  animation: fadeUp 0.7s ease both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-avatar-wrap { justify-content: center; }
  .hero-badges, .hero-cta { justify-content: center; }
  .hero-bio { max-width: 100%; }
  .nav-links { display: none; }
}
