:root {
  --navy: #0a0e1f;
  --navy2: #0d1428;
  --navy3: #111936;
  --gold: #c9a84c;
  --gold2: #e8c96b;
  --gold3: #f5dfa0;
  --gold-dark: #8b6914;
  --white: #ffffff;
  --gray: rgba(255, 255, 255, 0.55);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Raleway", sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

.icon {
  max-width: 30px;
  max-height: 30px;
}

.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-20px) scale(1);
    opacity: 0;
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(10, 14, 31, 0.92);
  backdrop-filter: blur(40px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(201, 168, 76, 0.4);
}
.logo-text {
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold2);
  letter-spacing: 0.08em;
}
.logo-sub {
  font-size: 0.58rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  display: block;
  margin-top: -2px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}
nav ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
nav ul a:hover {
  color: var(--gold2);
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.84rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition:
    opacity 0.2s,
    transform 0.15s;
}
.nav-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7rem 5% 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(
      ellipse 80% 70% at 50% 40%,
      rgba(201, 168, 76, 0.08) 0%,
      transparent 65%
    ),
    var(--navy);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-emblem {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.2);
}
.hero-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  background: linear-gradient(180deg, #f5dfa0 0%, #c9a84c 50%, #8b6914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-family: "Cinzel", serif;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--white);
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-gold {
  background: linear-gradient(135deg, #e8c96b, #c9a84c, #8b6914);
  color: var(--navy);
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.4);
  transition:
    box-shadow 0.2s,
    transform 0.15s;
}
.btn-gold:hover {
  box-shadow: 0 6px 36px rgba(201, 168, 76, 0.6);
  transform: translateY(-2px);
}
.btn-outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold2);
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-outline-gold:hover {
  background: rgba(201, 168, 76, 0.1);
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 0;
  background: linear-gradient(
    90deg,
    var(--navy),
    rgba(201, 168, 76, 0.1),
    var(--navy)
  );
}
.gold-divider::before,
.gold-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-divider span {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--navy2);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.stat {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(201, 168, 76, 0.1);
}
.stat:last-child {
  border: none;
}
.stat-num {
  font-family: "Cinzel", serif;
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(180deg, #f5dfa0, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.3rem;
}
.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

section {
  padding: 5rem 5%;
  position: relative;
  z-index: 1;
}
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #f5dfa0, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* INSTITUTIONAL */
.inst-section {
  background: var(--navy2);
}
.inst-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.inst-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.1);
}
.inst-img-wrap img {
  width: 100%;
  display: block;
}
.inst-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.value-pill {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.inst-features {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.inst-feat {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.inst-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.inst-feat-text h4 {
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  color: var(--gold2);
  margin-bottom: 0.2rem;
}
.inst-feat-text p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* MASCOT */
.mascot-section {
  background: var(--navy);
}
.mascot-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.mascot-img-wrap {
  position: relative;
}
.mascot-img-wrap img {
  width: 100%;
  border-radius: 20px;
  display: block;
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.15);
}
.mascot-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #e8c96b, #c9a84c);
  color: var(--navy);
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}
.mascot-traits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.mascot-trait {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.trait-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.trait-text h5 {
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  color: var(--gold2);
  margin-bottom: 0.2rem;
}
.trait-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  line-height: 1.5;
}

/* PLANS */
.plans-section {
  background: var(--navy2);
}
.plans-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.plans-header .section-sub {
  max-width: 520px;
  margin: 0 auto;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.plan-card {
  background: rgba(13, 20, 40, 0.9);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  padding: 0 0 1.75rem;
  position: relative;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.6);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.12);
}
.plan-card.featured {
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.2);
}
.plan-card.featured:hover {
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.3);
}
.plan-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #e8c96b, #c9a84c);
  color: var(--navy);
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem;
  text-align: center;
}
.plan-folder {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}
.plan-folder img {
  width: 100%;
  display: block;
}
.plan-body {
  padding: 1.25rem 1.5rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.plan-name {
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.plan-speed {
  font-family: "Cinzel", serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #f5dfa0, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.plan-speed span {
  font-size: 1rem;
  font-weight: 500;
}
.plan-price-box {
  margin: 0.85rem 0 1.25rem;
}
.plan-promo-price {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.15rem;
}
.plan-promo-price strong {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: var(--gold2);
  -webkit-text-fill-color: var(--gold2);
}
.plan-regular {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}
.plan-regular strong {
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  color: rgba(201, 168, 76, 0.7);
  -webkit-text-fill-color: rgba(201, 168, 76, 0.7);
}
.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(201, 168, 76, 0.07);
}
.plan-features li:last-child {
  border: none;
}
.plan-features li::before {
  content: "◆";
  color: var(--gold);
  font-size: 0.42rem;
  flex-shrink: 0;
}
.btn-plan-gold {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 0.85rem;
  border-radius: 12px;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #e8c96b, #c9a84c, #8b6914);
  color: var(--navy);
  transition:
    opacity 0.2s,
    transform 0.15s;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
  margin: 0 1.5rem;
}
.btn-plan-gold:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.btn-plan-outline {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 0.85rem;
  border-radius: 12px;
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold2);
  transition:
    background 0.2s,
    border-color 0.2s;
  margin: 0 1.5rem;
}
.btn-plan-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

/* FEATURES */
.features-section {
  background: var(--navy);
}
.features-grid {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.features-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.feature-item:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.05);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.feature-text h4 {
  font-family: "Cinzel", serif;
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: var(--gold2);
}
.feature-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.6;
}
.speed-visual {
  background: rgba(13, 20, 40, 0.9);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  padding: 2rem;
}
.speed-card {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
.speed-val {
  font-family: "Cinzel", serif;
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(180deg, #f5dfa0, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.speed-unit {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}
.bar-wrap {
  height: 4px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  margin-top: 0.75rem;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--gold-dark),
    var(--gold),
    var(--gold2)
  );
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.metric {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}
.metric-val {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold2);
}
.metric-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.2rem;
  letter-spacing: 0.08em;
}

/* CONTACT / QR */
.contact-section {
  background: var(--navy2);
  text-align: center;
}
.contact-inner {
  max-width: 860px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.contact-card {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.contact-card h4 {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  color: var(--gold2);
  margin-bottom: 0.4rem;
  letter-spacing: 0.1em;
}
.contact-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.6;
}
.contact-card a {
  color: var(--gold2);
  text-decoration: none;
}
.qr-section {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  text-align: left;
}
.qr-img {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.4);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.qr-text h3 {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold2);
  margin-bottom: 0.5rem;
}
.qr-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.qr-number {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: #25d366;
  color: #fff;
  padding: 1.1rem 2.5rem;
  border-radius: 999px;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 4px 28px rgba(37, 211, 102, 0.35);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}
.whatsapp-btn:hover {
  background: #1ebe58;
  transform: translateY(-2px);
  box-shadow: 0 6px 40px rgba(37, 211, 102, 0.5);
}

footer {
  padding: 2rem 5%;
  background: var(--navy2);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

@media (max-width: 860px) {
  .inst-inner,
  .features-grid,
  .mascot-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  nav ul {
    display: none;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .qr-section {
    flex-direction: column;
    text-align: center;
  }
  .qr-text h3,
  .qr-text p {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn-gold,
  .btn-outline-gold {
    text-align: center;
  }
  .hero-emblem {
    width: 120px;
    height: 120px;
  }
  .mascot-traits {
    grid-template-columns: 1fr;
  }
  footer {
    /* flex-direction: column;
    align-items: center; */
    justify-content: center;
  }
}

/* VIDEOS */
.videos-section {
  background: var(--navy2);
  padding: 5rem 5%;
}
.videos-header {
  text-align: center;
  margin-bottom: 3rem;
}
.videos-header .section-sub {
  max-width: 520px;
  margin: 0 auto;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.video-card {
  background: rgba(13, 20, 40, 0.9);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.12);
}
.video-wrap {
  position: relative;
  width: 100%;
  background: #000;
  aspect-ratio: 9/16;
}
.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-info {
  padding: 1.25rem 1.5rem 1.5rem;
}
.video-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold2);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}
.video-title {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold2);
  margin-bottom: 0.4rem;
}
.video-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.83rem;
  line-height: 1.6;
}
