/* ============================
   Therchias — Site Styles
   All Greens, All Day
   ============================ */

:root {
  --bg-deep:       #0d1410;
  --bg-surface:    #162018;
  --bg-card:       #111d13;
  --bg-card-hover: #172319;
  --text-primary:  #c8e8c0;
  --text-secondary:#7aad74;
  --text-muted:    #4a6b45;
  --green-bright:  #5dd65d;
  --green-mid:     #3fa83f;
  --green-soft:    #a8d8a0;
  --green-lime:    #9ed94a;
  --green-dark:    #2a5c2a;
  --green-deeper:  #1d3d1d;
  --border:        rgba(93, 214, 93, 0.1);
  --border-mid:    rgba(63, 168, 63, 0.2);
  --font-display:  'Cinzel', serif;
  --font-body:     'Lato', sans-serif;
  --radius:        8px;
}

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

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

a { color: var(--green-bright); text-decoration: none; }
a:hover { color: var(--green-lime); }

/* ===== LIVE BANNER ===== */
.live-banner {
  background: linear-gradient(90deg, #1a4a1a, #2a6e2a);
  color: #c8e8c0;
  text-align: center;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

.live-watch-btn {
  background: rgba(93, 214, 93, 0.15);
  color: var(--green-bright);
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid rgba(93, 214, 93, 0.35);
  transition: background 0.2s;
}
.live-watch-btn:hover { background: rgba(93, 214, 93, 0.28); color: var(--green-bright); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  text-align: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,  rgba(42, 92, 42, 0.3) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(158, 217, 74, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 60%, rgba(63, 168, 63, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bg-pattern::after {
  content: '🐾';
  position: absolute;
  font-size: 200px;
  opacity: 0.025;
  bottom: -30px;
  right: -30px;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-paws {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: float 4s ease-in-out infinite;
}

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

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 0.75rem;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 0 80px rgba(93, 214, 93, 0.18);
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green-lime);
  font-style: italic;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 1.25rem;
  animation: bounce 2s ease-in-out infinite;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(63, 168, 63, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #336633, #4abf4a);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(63, 168, 63, 0.4);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--green-bright);
  color: var(--green-bright);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green-bright);
  border: 1px solid var(--green-bright);
}
.btn-outline:hover {
  background: rgba(93, 214, 93, 0.1);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }

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

.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-lime);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

/* ===== PAW DIVIDER ===== */
.paw-divider {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  padding: 0.5rem 0;
  opacity: 0.5;
  user-select: none;
}

/* ===== ABOUT ===== */
.about-section { background: var(--bg-deep); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
}

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

.embed-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.embed-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.offline-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
}
.offline-paw { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }
.offline-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.offline-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* ===== SCHEDULE ===== */
.schedule-section { background: var(--bg-surface); }

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

.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.schedule-card:hover {
  border-color: var(--green-lime);
  transform: translateY(-2px);
}

.schedule-day {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-lime);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.schedule-time {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 700;
}
.schedule-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ===== PANELS ===== */
.panels-section { background: var(--bg-deep); }

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

.panel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.panel-card:hover {
  border-color: var(--green-bright);
  transform: translateY(-2px);
}
.panel-image {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 4px;
}
.panel-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--green-bright);
  margin-bottom: 0.5rem;
}
.panel-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.panel-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--green-lime);
  font-weight: 700;
}

/* ===== COMMANDS ===== */
.commands-section { background: var(--bg-surface); }

.commands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0.75rem;
}

.command-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: border-color 0.2s;
}
.command-card:hover { border-color: var(--green-soft); }

.command-trigger {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-soft);
}
.command-response {
  font-size: 0.875rem;
  color: var(--text-primary);
}
.command-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== SOCIALS ===== */
.socials-section { background: var(--bg-deep); }

.socials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.social-pill:hover {
  background: var(--green-dark);
  border-color: var(--green-mid);
  color: var(--green-bright);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.footer-sub {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-copy a { color: var(--text-muted); }
.footer-copy a:hover { color: var(--green-bright); }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .hero-name { font-size: 3rem; }
  .section { padding: 3.5rem 0; }
  .schedule-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .hero-paws, .hero-scroll-hint, .live-dot { animation: none; }
}

/* ===== CLIPS ===== */
.clips-section { background: var(--bg-surface); }

.clips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.clip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
  color: inherit;
}
.clip-card:hover {
  border-color: var(--green-bright);
  transform: translateY(-3px);
  color: inherit;
}

.clip-thumb-wrap {
  position: relative;
  padding-top: 56.25%;
  background: var(--bg-deep);
  overflow: hidden;
}
.clip-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.clip-card:hover .clip-thumb { transform: scale(1.04); }

.clip-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 0.2s;
}
.clip-card:hover .clip-play { opacity: 1; }

.clip-views {
  position: absolute;
  bottom: 0.5rem;
  right: 0.6rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.clip-info {
  padding: 0.9rem 1rem;
}
.clip-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.clip-game {
  font-size: 0.78rem;
  color: var(--green-soft);
  margin-top: 0.3rem;
}

/* ===== HERO AVATAR ===== */
.hero-avatar-wrap {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.hero-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid var(--green-mid);
  box-shadow:
    0 0 0 6px rgba(63, 168, 63, 0.12),
    0 0 30px rgba(93, 214, 93, 0.2);
  animation: float 4s ease-in-out infinite;
  object-fit: cover;
}
