:root {
  --silver: #CBCBCC;
  --red: #AB1418;
  --black: #0A0A0A;
  --dark-red: #2A0A0A;
  --cream: #F0E0C0;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-800: #1A1A1A;
  --gray-900: #111111;
  --red-glow: rgba(171, 20, 24, 0.3);
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--red);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-decoration: none;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-label.center {
  text-align: center;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.section-title.center {
  text-align: center;
}

.section-title.light {
  color: var(--white);
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(171, 20, 24, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  transition: height 0.3s ease;
}

.navbar.scrolled .nav-logo-img {
  height: 40px;
}

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

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--silver);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 4px;
  transition: all 0.3s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: #C41A1E !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--red-glow);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--silver);
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, var(--dark-red) 0%, var(--black) 70%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(171, 20, 24, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(171, 20, 24, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(42, 10, 10, 0.8) 0%, transparent 50%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 0.6; }
  80% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-200px) scale(0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-logo {
  width: 220px;
  height: auto;
  margin-bottom: 32px;
  filter: drop-shadow(0 0 40px rgba(171, 20, 24, 0.4));
  animation: logoFloat 4s ease-in-out infinite;
}

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

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--white);
  letter-spacing: 6px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.hero-verse {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--silver);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 8px;
}

.hero-verse-ref {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 30px var(--red-glow);
}

.btn-primary:hover {
  background: #C41A1E;
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(171, 20, 24, 0.5);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--silver);
  border-bottom: 2px solid var(--silver);
  transform: rotate(45deg);
  opacity: 0.5;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* ============ ABOUT ============ */
.about {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--gray-900) 100%);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

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

.about-content .section-title {
  color: var(--white);
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 20px;
  font-weight: 300;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(203, 203, 204, 0.1);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--silver);
  text-transform: uppercase;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shield-graphic {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-graphic::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(171, 20, 24, 0.15) 0%, transparent 70%);
  animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 1; }
}

.about-logo {
  width: 260px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(171, 20, 24, 0.3));
}

/* ============ BATTLE SECTION ============ */
.battle-section {
  padding: 120px 0;
  background: var(--black);
  position: relative;
}

.battle-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.battle-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--silver);
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
  font-weight: 300;
}

.battle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.battle-card {
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
  border: 1px solid rgba(171, 20, 24, 0.15);
  border-radius: 8px;
  padding: 36px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.battle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height 0.4s ease;
}

.battle-card:hover {
  border-color: rgba(171, 20, 24, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(171, 20, 24, 0.15);
}

.battle-card:hover::before {
  height: 100%;
}

.battle-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
  min-width: 50px;
  text-align: center;
}

.battle-card-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.battle-card-content p {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.5;
  font-weight: 300;
}

/* ============ DEVOTIONALS ============ */
.devotionals {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--gray-900) 0%, var(--black) 100%);
  position: relative;
}

.devotionals::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.devotionals-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
  font-weight: 300;
}

.featured-video {
  max-width: 900px;
  margin: 0 auto 40px;
}

.video-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(171, 20, 24, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(171, 20, 24, 0.1);
}

.video-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
}

.video-lazy-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-lazy-wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.video-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: var(--gray-800);
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.3s ease;
}

.video-placeholder:hover .play-btn-overlay {
  background: rgba(0, 0, 0, 0.15);
}

.play-btn-overlay svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}

.video-placeholder:hover .play-btn-overlay svg {
  transform: scale(1.1);
}

.featured-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  text-align: center;
  margin-top: 16px;
  letter-spacing: 0.5px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.video-thumb {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(171, 20, 24, 0.15);
  background: var(--gray-800);
  transition: all 0.3s ease;
}

.video-thumb:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(171, 20, 24, 0.2);
}

.video-thumb.active {
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(171, 20, 24, 0.3);
}

.thumb-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.thumb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-thumb:hover .thumb-play {
  opacity: 1;
}

.thumb-play-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.thumb-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: var(--silver);
  padding: 10px 12px;
  line-height: 1.4;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-loading {
  text-align: center;
  padding: 40px;
  color: var(--silver);
  font-family: 'Lato', sans-serif;
}

/* ============ JOIN SECTION ============ */
.join-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark-red) 50%, var(--black) 100%);
  position: relative;
}

.join-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.join-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.join-text {
  font-size: 1.15rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 50px;
  font-weight: 300;
}

.join-cta {
  margin-top: 20px;
}

.text-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.text-keyword {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--red);
  letter-spacing: 6px;
  text-shadow: 0 0 30px var(--red-glow);
}

.text-to {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  color: var(--silver);
  font-weight: 300;
}

.text-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--white);
  letter-spacing: 4px;
}

.join-instruction {
  font-size: 1.05rem;
  color: var(--silver);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.6;
}

.join-instruction strong {
  color: var(--white);
  font-weight: 700;
}

.join-cta .btn {
  margin-top: 24px;
  display: inline-block;
}

.join-sub {
  font-size: 0.85rem;
  color: rgba(203, 203, 204, 0.5);
  font-weight: 300;
  margin-top: 12px;
}

.tcpa-disclaimer {
  font-size: 0.7rem;
  color: rgba(203, 203, 204, 0.35);
  font-weight: 300;
  line-height: 1.6;
  max-width: 500px;
  margin: 24px auto 0;
}

.tcpa-disclaimer a {
  color: rgba(203, 203, 204, 0.5);
  text-decoration: underline;
}

/* ============ LEGAL PAGES ============ */
.legal-page {
  padding: 140px 0 80px;
  background: var(--black);
  min-height: 100vh;
}

.legal-page .section-title {
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 0.85rem;
  color: rgba(203, 203, 204, 0.5);
  margin-bottom: 40px;
  font-weight: 300;
}

.legal-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-top: 32px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 12px;
  font-weight: 300;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.8;
  font-weight: 300;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.legal-content strong {
  color: var(--white);
  font-weight: 700;
}

/* ============ HERO TEXT CTA ============ */
.hero-text-cta {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(203, 203, 204, 0.6);
  font-weight: 300;
}

.hero-text-cta a {
  color: var(--silver);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.hero-text-cta a:hover {
  color: var(--white);
}

/* ============ FOOTER ============ */
.footer {
  padding: 60px 0 40px;
  background: var(--black);
  border-top: 1px solid rgba(171, 20, 24, 0.15);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  opacity: 0.7;
}

.footer-verse {
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(203, 203, 204, 0.5);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: rgba(203, 203, 204, 0.4);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--silver);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(203, 203, 204, 0.08);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(203, 203, 204, 0.3);
  letter-spacing: 1px;
}

/* ============ ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-visual {
    order: -1;
  }

  .shield-graphic {
    width: 200px;
    height: 200px;
  }

  .about-logo {
    width: 180px;
  }

  .battle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 3px;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero-logo {
    width: 160px;
  }

  .hero-title {
    letter-spacing: 3px;
  }

  .about-stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .battle-grid {
    grid-template-columns: 1fr;
  }

  .text-keyword, .text-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 130px;
  }

  .btn {
    padding: 14px 32px;
    font-size: 0.8rem;
    min-height: 48px;
  }

  .battle-card {
    padding: 24px 20px;
  }

  .battle-letter {
    font-size: 2.2rem;
    min-width: 40px;
  }

  .about, .battle-section, .devotionals, .join-section {
    padding: 80px 0;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .container {
    padding: 0 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (hover: none) {
  .video-thumb .thumb-play {
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
  }

  .battle-card::before {
    height: 100%;
  }
}
