/* ===== ROOT VARIABLES ===== */
:root {
  --bg-darkest: #06060f;
  --bg-dark: #0d0d1e;
  --bg-mid: #12122a;
  --bg-section: #0f0f20;
  --bg-armoury: #1a0b35;
  --accent-blue: #00c8ff;
  --accent-gold: #ffd700;
  --accent-purple: #8b3aff;
  --accent-orange: #ff6b35;
  --text-primary: #ffffff;
  --text-secondary: #a8b2d8;
  --card-bg: #1e1e3a;
  --border-subtle: rgba(255,255,255,0.08);
  --font-display: 'Exo 2', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
}

/* ===== RESET & BASE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

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

/* ===== NAVBAR ===== */
#mainNav {
  background: rgba(6, 6, 15, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 200, 255, 0.12);
  padding: 10px 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

#mainNav.scrolled {
  background: rgba(6, 6, 15, 0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.navbar-brand img { height: 42px; }

.brand-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.brand-text span { color: var(--accent-blue); }

.nav-link {
  color: var(--text-secondary) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px !important;
  border-radius: 4px;
  transition: color 0.25s, background 0.25s;
}
.nav-link:hover { color: #fff !important; background: rgba(0,200,255,0.1); }

.navbar-toggler {
  border-color: var(--accent-blue);
  padding: 4px 8px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,200,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== BUTTONS ===== */
.btn-primary-cta {
  background: var(--accent-purple);
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
  padding: 8px 20px;
}
.btn-primary-cta:hover {
  background: #a050ff;
  box-shadow: 0 0 18px rgba(139,58,255,0.6);
  transform: translateY(-1px);
  color: #fff;
}

.btn-outline-light { font-family: var(--font-display); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.btn-hero {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 10px 32px;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.btn-hero:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 30px rgba(255,255,255,0.3);
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.6) 70%,
    rgba(6,6,15,0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.95;
  color: #fff;
  text-shadow: 0 0 60px rgba(0,0,0,0.8);
  letter-spacing: 2px;
}
.hero-title span {
  color: var(--accent-blue);
  text-shadow: 0 0 40px rgba(0,200,255,0.5);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 16px;
  letter-spacing: 0.5px;
}

/* ===== SECTION COLORS ===== */
.section-dark { background: var(--bg-dark); }
.section-darker { background: var(--bg-darkest); }

/* ===== SECTION TITLE ===== */
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}
.section-title .fa { color: var(--accent-purple); }

/* ===== VIDEO ===== */
.video-wrapper {
  max-width: 900px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,200,255,0.15);
  border: 1px solid rgba(0,200,255,0.15);
}
.video-wrapper video { width: 100%; display: block; background: #000; }

/* ===== TABLES ===== */
.war-table {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  color: #fff;
  border-collapse: collapse;
  border: 2px solid #00c8ff;
}
.war-table thead tr {
  background: #2a2a4a;
}
.war-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--accent-blue);
  border-bottom: 1px solid rgba(0,200,255,0.2);
  padding: 14px 20px;
  text-align: center;
  border: 1px solid #00c8ff;
}
.war-table tbody td {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: #00c8ff;
  text-align: center;
  border: 1px solid #00c8ff;
}
.war-table tbody tr:hover { background: rgba(139,58,255,0.08); }
.war-table tbody tr:last-child td { border-bottom: none; }

/* ===== GALLERY AUTO-SCROLL ===== */
.gallery-track-wrapper {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}
.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: galleryScroll 35s linear infinite;
  padding: 0 8px;
}
.gallery-track:hover { animation-play-state: paused; }

@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-card {
  flex: 0 0 470px;
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border-subtle);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.gallery-card:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,200,255,0.25);
  border-color: rgba(0,200,255,0.3);
}
.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.gallery-card p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-align: center;
  padding: 8px 6px;
  color: #fff;
  text-transform: uppercase;
}

/* ===== ARMOURY ===== */
.section-armoury {
  background: linear-gradient(180deg, var(--bg-armoury) 0%, #120820 100%);
}

.armoury-cat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
}

.armoury-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
}

.armoury-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 4px;
  flex: 1;
  scrollbar-width: none;
}
.armoury-row::-webkit-scrollbar { display: none; }

.armoury-card {
  flex: 0 0 480px;
  background: rgba(0,0,0,0.5);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  position: relative;
}
.armoury-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 35px rgba(139,58,255,0.4);
  border-color: rgba(139,58,255,0.5);
}
.armoury-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.armoury-card span {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-align: center;
  padding: 8px 6px;
  color: #fff;
  text-transform: uppercase;
  background: rgba(0,0,0,0.7);
}

.armoury-arrow {
  background: rgba(139,58,255,0.3);
  border: 1px solid rgba(139,58,255,0.5);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  font-size: 0.85rem;
}
.armoury-arrow:hover {
  background: var(--accent-purple);
  transform: scale(1.1);
}

/* ===== ENLIST FORM ===== */
.enlist-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 100%;
  filter: brightness(0.95);
}

.enlist-form-box {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 28px 24px;
  border: 1px solid rgba(139,58,255,0.2);
}

.form-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bf-input {
  background: #0f0f25 !important;
  border: 1px solid rgba(139,58,255,0.3) !important;
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 4px;
  padding: 10px 14px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.bf-input:focus {
  border-color: var(--accent-purple) !important;
  box-shadow: 0 0 0 3px rgba(139,58,255,0.2) !important;
  outline: none;
}
.bf-input option { background: #0f0f25; color: #fff; }

.form-check-input:checked {
  background-color: var(--accent-purple);
  border-color: var(--accent-purple);
}

/* ===== PARTNER CARDS ===== */
.partner-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 0 0 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  transform: translateY(0);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  height: 100%;
  min-height: 420px;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 60px rgba(255, 215, 0, 0.35), 0 0 0 2px rgba(255,215,0,0.5);
  border-color: var(--accent-gold);
}

.partner-card.elite {
  border-color: rgba(255,215,0,0.25);
}
.partner-card.elite:hover {
  box-shadow: 0 16px 70px rgba(255,215,0,0.5), 0 0 0 2px rgba(255,215,0,0.7);
}

.partner-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.partner-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 18px 20px 8px;
}

.partner-card-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 20px 18px;
  line-height: 1.5;
}

.partner-card .btn-primary-cta { margin: 0 20px; width: calc(100% - 40px); }

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-darkest) 100%);
  border-top: 1px solid var(--border-subtle);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.footer-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.2s;
}
.social-icon:hover { transform: scale(1.15); }

.social-icon.discord:hover  { color: #7289da; background: rgba(114,137,218,0.15); box-shadow: 0 0 18px rgba(114,137,218,0.5); border-color: #7289da; }
.social-icon.twitch:hover   { color: #9146ff; background: rgba(145,70,255,0.15); box-shadow: 0 0 18px rgba(145,70,255,0.5); border-color: #9146ff; }
.social-icon.facebook:hover { color: #1877f2; background: rgba(24,119,242,0.15); box-shadow: 0 0 18px rgba(24,119,242,0.5); border-color: #1877f2; }
.social-icon.instagram:hover { color: #e1306c; background: rgba(225,48,108,0.15); box-shadow: 0 0 18px rgba(225,48,108,0.5); border-color: #e1306c; }
.social-icon.reddit:hover   { color: #ff4500; background: rgba(255,69,0,0.15); box-shadow: 0 0 18px rgba(255,69,0,0.5); border-color: #ff4500; }
.social-icon.tiktok:hover   { color: #69c9d0; background: rgba(105,201,208,0.15); box-shadow: 0 0 18px rgba(105,201,208,0.5); border-color: #69c9d0; }
.social-icon.twitter:hover  { color: #fff; background: rgba(255,255,255,0.1); box-shadow: 0 0 18px rgba(255,255,255,0.4); border-color: #fff; }

.language-select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 20px;
  padding: 6px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}
.language-select option { background: #12122a; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
}
.footer-links a {
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

/* ===== ENLIST SUCCESS MSG ===== */
#enlistMsg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  color: #00ff88;
  padding: 10px;
  background: rgba(0,255,136,0.08);
  border-radius: 6px;
  border: 1px solid rgba(0,255,136,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .hero-section { padding-bottom: 80px; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  #navMenu { padding: 16px 0; }
  .nav-link { padding: 8px 16px !important; }
}

@media (max-width: 767.98px) {
  .hero-section { padding-bottom: 60px; min-height: 85vh; }
  .hero-title { font-size: clamp(2.2rem, 12vw, 3.5rem); }
  .gallery-card { flex: 0 0 175px; }
  .gallery-card img { height: 115px; }
  .armoury-card { flex: 0 0 155px; }
  .armoury-card img { height: 100px; }
  .war-table thead th, .war-table tbody td { padding: 10px 12px; font-size: 0.85rem; }
  .section-title { font-size: 1.4rem; }
  .enlist-form-box { padding: 20px 16px; }
  .partner-card-title { font-size: 1rem; }
}

@media (max-width: 575.98px) {
  .hero-section { min-height: 75vh; padding-bottom: 50px; }
  .hero-title { font-size: 2.2rem; letter-spacing: 1px; }
  .hero-sub { font-size: 0.85rem; }
  .btn-hero { padding: 8px 22px; font-size: 0.75rem; }
  .gallery-card { flex: 0 0 155px; }
  .gallery-card img { height: 100px; }
  .gallery-card p { font-size: 0.72rem; padding: 6px; }
  .armoury-card { flex: 0 0 135px; }
  .armoury-card img { height: 88px; }
  .social-icon { width: 38px; height: 38px; font-size: 0.9rem; }
  .footer-links { gap: 4px 12px; }
  .footer-links a { font-size: 0.65rem; }
  .partner-card:hover { transform: translateY(-6px); }
  .video-wrapper { border-radius: 4px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeInUp 0.9s ease both; }
/* ====================================================
   part3.css  —  Battlefield 2042 | Part 3 Stylesheet
   External CSS for all Part 3 additions
   (Bootstrap overrides, Modals, Accordion, new UI)
==================================================== */

/* ─── ACTIVE NAV LINK ─── */
.active-nav {
  color: var(--accent-blue) !important;
  background: rgba(0, 200, 255, 0.1) !important;
}

/* ─── BRAND BADGE ─── */
.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.8rem;
  color: #fff;
  letter-spacing: 1px;
  flex-shrink: 0;
}

/* ─── BOOTSTRAP DROPDOWN OVERRIDE ─── */
.bf-dropdown {
  background: rgba(10, 10, 28, 0.97);
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 6px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  padding: 6px;
  min-width: 200px;
}

.bf-dropdown .dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  border-radius: 4px;
  padding: 8px 14px;
  transition: background 0.2s, color 0.2s;
}

.bf-dropdown .dropdown-item:hover,
.bf-dropdown .dropdown-item:focus {
  background: rgba(0, 200, 255, 0.12);
  color: #fff;
}

.bf-dropdown .dropdown-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 4px 0;
}

/* ─── RETURN SOLDIER TIP ─── */
.return-tip {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 20px;
  padding: 4px 12px;
  background: rgba(0, 200, 255, 0.06);
}

/* ─── HERO BREADCRUMB ─── */
.hero-breadcrumb .breadcrumb {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 6px 16px;
  display: inline-flex;
  backdrop-filter: blur(8px);
}

.hero-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.hero-breadcrumb .breadcrumb-item a:hover { color: var(--accent-blue); }

.hero-breadcrumb .breadcrumb-item.active {
  color: var(--accent-blue);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.3);
  content: "›";
}

/* ─── SECTION BREADCRUMB ─── */
.bf-breadcrumb {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 8px 16px;
  display: inline-flex;
  margin-bottom: 0;
}

.bf-breadcrumb .breadcrumb-item a {
  color: var(--accent-blue);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.bf-breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.bf-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.25);
}

/* ─── ALERT RIBBON ─── */
.alert-ribbon {
  position: relative;
  z-index: 900;
  margin-top: 70px; /* below fixed navbar */
}

.bf-alert {
  background: rgba(20, 20, 40, 0.95) !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 193, 7, 0.2) !important;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  border-radius: 0 !important;
}

/* ─── TRAILER INFO BOX ─── */
.trailer-info-box {
  background: rgba(20, 20, 40, 0.6);
  border: 1px solid rgba(0, 200, 255, 0.15);
  border-radius: 10px;
  padding: 28px 24px;
  height: 100%;
}

.bf-badge {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 20px;
}

.trailer-info-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.trailer-info-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.trailer-features li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.trailer-features li:last-child { border-bottom: none; }

/* ─── STAT CARDS ─── */
.stat-card {
  background: rgba(20, 20, 40, 0.7);
  border: 1px solid rgba(0, 200, 255, 0.12);
  border-radius: 10px;
  padding: 24px 16px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 200, 255, 0.2);
  border-color: rgba(0, 200, 255, 0.3);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--accent-blue);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── BOOTSTRAP MODAL OVERRIDE ─── */
.bf-modal {
  background: rgba(10, 10, 28, 0.98);
  border: 1px solid rgba(0, 200, 255, 0.18);
  border-radius: 10px;
  color: #fff;
  backdrop-filter: blur(20px);
}

.bf-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 24px;
}

.bf-modal .modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  color: #fff;
}

.bf-modal .modal-body {
  padding: 24px;
}

.bf-modal .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 24px;
}

/* modal backdrop */
.modal-backdrop { background-color: #000; }
.modal-backdrop.show { opacity: 0.8; }

/* ─── LOGIN MODAL SPECIFIC ─── */
.footer-modal-link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--accent-blue);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.footer-modal-link:hover { color: #fff; }

/* ─── PLAY MODAL ─── */
.platform-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  text-align: left;
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.platform-btn:hover,
.platform-btn.active {
  background: rgba(0, 200, 255, 0.12);
  border-color: var(--accent-blue);
  color: #fff;
}

.beta-info li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.beta-info li:last-child { border-bottom: none; }

/* ─── LORE MODAL BODY ─── */
.lore-body p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.lore-body h6 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ─── PACK FEATURES LIST ─── */
.pack-features li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.pack-features li:last-child { border-bottom: none; }

/* ─── BOOTSTRAP ACCORDION OVERRIDE ─── */
.bf-accordion .accordion-item {
  background: rgba(20, 20, 40, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px !important;
  margin-bottom: 8px;
  overflow: hidden;
}

.bf-accordion .accordion-button {
  background: rgba(30, 30, 58, 0.8);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 16px 20px;
  border: none;
  box-shadow: none !important;
}

.bf-accordion .accordion-button:not(.collapsed) {
  background: rgba(0, 200, 255, 0.1);
  color: var(--accent-blue);
}

.bf-accordion .accordion-button::after {
  filter: invert(1) brightness(0.7);
}

.bf-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(1) brightness(1) sepia(1) hue-rotate(160deg);
}

.bf-accordion .accordion-body {
  background: rgba(12, 12, 30, 0.9);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 16px 20px;
}

/* ─── YOUTUBE ICON HOVER ─── */
.social-icon.youtube:hover {
  color: #ff0000;
  background: rgba(255, 0, 0, 0.15);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.5);
  border-color: #ff0000;
}

/* ─── SUBSCRIBE TOAST (JS injected) ─── */
.bf-toast {
  position: fixed;
  bottom: 30px;
  right: 24px;
  background: rgba(10, 10, 28, 0.97);
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 8px;
  padding: 14px 20px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  animation: toastIn 0.4s ease, toastOut 0.4s ease 3.6s forwards;
  max-width: 320px;
}

@keyframes toastIn  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; transform: translateY(10px); } }

/* ─── SCROLL-TO-TOP BUTTON ─── */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--accent-purple);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(139, 58, 255, 0.5);
  transition: background 0.2s, transform 0.2s;
  align-items: center;
  justify-content: center;
}
#scrollTopBtn:hover { background: var(--accent-blue); transform: scale(1.1); }
#scrollTopBtn.visible { display: flex; }

/* ─── RESPONSIVE TWEAKS ─── */
@media (max-width: 991.98px) {
  .alert-ribbon { margin-top: 66px; }
  .trailer-info-box { margin-top: 0; }
}

@media (max-width: 767.98px) {
  .alert-ribbon { margin-top: 62px; }
  .bf-modal .modal-body { padding: 16px; }
  .trailer-info-box { padding: 20px 16px; }
  .stat-num { font-size: 1.8rem; }
}

@media (max-width: 575.98px) {
  .alert-ribbon { margin-top: 58px; }
  .hero-breadcrumb .breadcrumb { font-size: 0.7rem; padding: 4px 10px; }
  .bf-modal .modal-dialog { margin: 10px; }
  .platform-btn { font-size: 0.8rem; padding: 10px 12px; }
  .stat-card { padding: 16px 10px; }
  .bf-accordion .accordion-button { font-size: 0.82rem; padding: 12px 14px; }
}
.partner-card {
  animation: floatCard 3s ease-in-out infinite;
}

.partner-card.elite {
  animation: floatCard 3s ease-in-out infinite 1.5s;
}

@keyframes floatCard {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

