:root {
  --bg: #05070b;
  --bg-alt: #0d111a;
  --bg-card: #101624;
  --border-subtle: #1e2636;
  --accent: #f5c242;       /* Paladin gold */
  --accent-soft: rgba(245, 194, 66, 0.14);
  --accent-strong: #ffdd6a;
  --text-main: #f7f8ff;
  --text-muted: #a4afc6;
  --danger: #ff4c6a;
  --link: #4ac6ff;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.6);
  --max-width: 1120px;
}

/* Global reset-ish */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #101626 0, var(--bg) 40%, #020308 100%);
  color: var(--text-main);
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  padding: 4.5rem 0;
  background: radial-gradient(circle at top left, rgba(245, 194, 66, 0.05), transparent 55%),
              var(--bg-alt);
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 1.1rem + 1vw, 2.1rem);
}

.section-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.section-link {
  font-size: 0.95rem;
  color: var(--link);
  text-decoration: none;
}

.section-link:hover {
  text-decoration: underline;
}

.accent {
  color: var(--accent-strong);
}

/* Header / Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.75));
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  background: #020308;
  border: 1px solid var(--border-subtle);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Nav */

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a:hover {
  color: var(--accent-strong);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #f1f3ff;
  border-radius: 10px;
  margin: 4px 0;
}

/* Hero */

.hero {
  padding: 4rem 0 4.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
}

.hero-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 1.4rem + 2vw, 3rem);
  margin: 0 0 1rem;
}

.hero-text {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-meta span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(to right, rgba(245, 194, 66, 0.08), rgba(7, 11, 19, 0.95));
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: radial-gradient(circle at top, rgba(245, 194, 66, 0.3), rgba(16, 22, 36, 0.98));
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(245, 194, 66, 0.35);
  max-width: 320px;
  text-align: center;
}

.hero-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
}
.hero-mock (
 width: 120px;
 height: 300px;
 margin: 0 auto 1rem;
 )

.hero-media-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-main);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease-out, box-shadow 0.08s ease-out, background 0.15s ease-out, border-color 0.15s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1a1403;
  box-shadow: 0 12px 25px rgba(245, 194, 66, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(245, 194, 66, 0.55);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-subtle);
  color: var(--text-main);
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(245, 194, 66, 0.06);
}

/* Sections */

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 2.5rem;
}

.about-highlight {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.feature-list li {
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

/* Video grid */

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.video-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  box-shadow: var(--shadow-soft);
}

.video-embed {
  position: relative;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h3 {
  margin: 0.4rem 0 0;
  font-size: 1rem;
}

.video-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Schedule */

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.schedule-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.4rem;
}

.schedule-card h3 {
  margin-top: 0;
}

/* Merch */

.merch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.merch-btn {
  margin-top: 1.25rem;
}

.merch-preview {
  display: flex;
  justify-content: flex-end;
}

.merch-card {
  position: relative;
  background: radial-gradient(circle at top, rgba(245, 194, 66, 0.25), rgba(16, 22, 36, 0.98));
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid rgba(245, 194, 66, 0.4);
  box-shadow: var(--shadow-soft);
  max-width: 320px;
}

.merch-tag {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(3, 6, 15, 0.9);
  border: 1px solid rgba(245, 194, 66, 0.65);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.merch-art {
  margin: 1.5rem 0 0.75rem;
}

.merch-art-inner {
  border-radius: 16px;
  border: 1px dashed rgba(245, 194, 66, 0.7);
  padding: 2.2rem 1.2rem;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* Community */

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.community-card {
  display: block;
  text-decoration: none;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.2rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

.community-card h3 {
  margin: 0 0 0.4rem;
}

.community-card p {
  margin: 0;
  color: var(--text-muted);
}

.community-card:hover {
  border-color: var(--accent);
  background: rgba(245, 194, 66, 0.08);
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 2.25rem;
  align-items: flex-start;
}

.contact-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.6rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 0.7rem;
  background: #050811;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(245, 194, 66, 0.35);
}

.form-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #04060b;
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-right {
  display: flex;
  gap: 1rem;
}

.footer-right a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-right a:hover {
  color: var(--accent-strong);
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner,
  .section-grid,
  .merch-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    justify-content: flex-start;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schedule-grid,
  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding: 0.6rem 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 58px;
    right: 1.5rem;
    background: #05070d;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    padding: 0.8rem 1rem;
    display: none;
    flex-direction: column;
    gap: 0.6rem;
    box-shadow: var(--shadow-soft);
    min-width: 180px;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .hero-inner {
    gap: 2.25rem;
  }

  .video-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-grid,
  .community-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  /* Contact page specific tweaks */
.contact-page h1 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: clamp(1.9rem, 1.2rem + 1.1vw, 2.2rem);
}

/* Alerts */

.alert {
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
}

.alert ul {
  margin: 0.35rem 0 0;
  padding-left: 1.2rem;
}

.alert-success {
  background: rgba(40, 167, 69, 0.12);
  border-color: rgba(40, 167, 69, 0.6);
  color: #c6f6d5;
}

.alert-error {
  background: rgba(220, 53, 69, 0.12);
  border-color: rgba(220, 53, 69, 0.8);
  color: #fed7d7;
}

}

