/* Root & Reset */
:root {
  --navy: #1e2e40;
  --navy-deep: #121c29;
  --gold: #c9a34e;
  --gold-soft: #e0c078;
  --warm-white: #f8f8f8;
  --soft-red: #b73b3b;
  --text-main: #e9edf3;
  --text-muted: #b4c0d0;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 45px rgba(3, 13, 30, 0.65);
  --shadow-card: 0 16px 40px rgba(8, 21, 45, 0.7);
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.24s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #32486a, #0a101c 52%, #050811 100%);
  color: var(--text-main);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold-soft);
  text-decoration: none;
}


button {
  font-family: inherit;
}

main {
  display: block;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: radial-gradient(circle at top right, #283b55, #050811 65%);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  margin: 0 0 10px;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

.two-column {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .two-column {
    grid-template-columns: 1fr;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: linear-gradient(
      to bottom,
      rgba(5, 10, 20, 0.85),
      rgba(5, 10, 20, 0.65),
      transparent
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-link {
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.brand-link:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.brand-link:active {
  transform: translateY(0);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0, #f7e6b5, #c9a34e 40%, #5f4720 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #1a1305;
  box-shadow: 0 0 0 1px rgba(255, 227, 173, 0.5), var(--shadow-soft);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.brand-link:hover .brand-mark {
  transform: scale(1.05);
  box-shadow: 0 0 0 1px rgba(255, 227, 173, 0.7), 0 4px 12px rgba(201, 163, 78, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.brand-link:hover .brand-eyebrow {
  color: var(--gold-soft);
}

.brand-title {
  font-size: 0.96rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.brand-link:hover .brand-title {
  color: var(--gold-soft);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link-text {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link-text:hover {
  color: var(--gold-soft);
}

.nav-link {
  background: transparent;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 16px;
  color: var(--text-main);
  font-size: 0.88rem;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 18px rgba(3, 13, 30, 0.7);
}

.nav-link-outline {
  border-color: rgba(201, 163, 78, 0.8);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 35;
}

.hamburger-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  position: relative;
  transition: background var(--transition-fast);
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  left: 0;
  transition: transform var(--transition-fast), top var(--transition-fast), bottom var(--transition-fast);
}

.hamburger-icon::before {
  top: -7px;
}

.hamburger-icon::after {
  bottom: -7px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-icon {
  background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(5, 10, 20, 0.98), rgba(5, 10, 20, 0.95));
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }

  .main-nav.active {
    max-height: 400px;
    opacity: 1;
    padding: 20px;
  }

  .nav-link-text,
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 8px;
  }

  .nav-link-text {
    display: block;
    font-size: 0.95rem;
  }

  .nav-link-text:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding-inline: 16px;
  }

  .brand-title {
    max-width: 170px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Hero */
.hero {
  padding: 36px 0 72px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.hero-copy {
  max-width: 540px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.12;
  margin: 0 0 12px;
}

.hero-highlight {
  display: block;
  font-size: 1rem;
  color: var(--gold-soft);
  margin-top: 4px;
}

.hero-body {
  margin: 0 0 18px;
  color: var(--text-muted);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* Countdown */
.countdown {
  margin-top: 18px;
  padding: 16px 18px 18px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, #314569, #1a2536 45%, #070d16 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(3, 10, 24, 0.9);
}

.countdown-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.countdown-unit {
  padding: 10px 8px;
  border-radius: 14px;
  background: linear-gradient(145deg, #0d1622, #1a2736);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.countdown-unit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(201, 163, 78, 0.3), transparent 65%);
  opacity: 0.65;
  mix-blend-mode: screen;
}

.count-number {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
}

.count-label {
  position: relative;
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-top: 3px;
}

.countdown-note {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Hero Prize Card */
.hero-prize-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, #f1e4c3, #cfa355 45%, #4d3411 100%);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
}

.hero-prize-image {
  height: 300px;
  background-image: linear-gradient(
      135deg,
      rgba(7, 19, 36, 0.6),
      rgba(10, 29, 45, 0.4)
    ),
    url("../assets/winner.jpg");
  background-position: center;
  background-size: cover;
}

.hero-prize-content {
  padding: 18px 20px 20px;
  color: #120d05;
}

.prize-heading {
  font-size: 1.3rem;
  margin: 0 0 6px;
}

.prize-text {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.prize-tagline {
  margin: 0 0 14px;
  font-weight: 600;
  font-size: 0.9rem;
}

.prize-note {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.prize-list {
  margin: 0 0 10px 0;
  padding-left: 20px;
  color: var(--text-main);
}

.prize-list li + li {
  margin-top: 4px;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 24px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-prize-card {
    order: -1;
  }
}

/* Buttons */
.btn {
  border-radius: var(--radius-pill);
  border: none;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f3e1b3, #c9a34e);
  color: #231807;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.btn-secondary {
  background: #1f2738;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.btn-secondary:hover {
  background: #293349;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}

.btn-ghost {
  background: transparent;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.btn-small {
  padding: 7px 12px;
  font-size: 0.82rem;
}

.btn-full {
  width: 100%;
}

/* Tickets */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ticket-card {
  background: radial-gradient(circle at top, #1c2838, #050811 80%);
  border-radius: 20px;
  padding: 18px 16px 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    border-color var(--transition-med), background var(--transition-med);
}

/* .ticket-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle at top center,
    rgba(201, 163, 78, 0.2),
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition-med);
} */

.ticket-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 163, 78, 0.7);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
}

.ticket-card:hover::before {
  opacity: 1;
}

.ticket-card-featured {
  background: radial-gradient(circle at top, #233149, #080d18 80%);
  border-color: rgba(201, 163, 78, 0.8);
}

.ticket-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.ticket-label-featured {
  color: var(--gold-soft);
}

.ticket-title {
  margin: 2px 0;
  font-size: 1.1rem;
}

.ticket-price {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.ticket-copy {
  margin: 6px 0 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.ticket-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.ticket-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--text-main);
}

.ticket-tag-light {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text-muted);
}

.ticket-tag-gold {
  border-color: rgba(201, 163, 78, 0.8);
  color: var(--gold-soft);
}

.ticket-quantity {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  margin-bottom: 10px;
}

.qty-btn {
  background: transparent;
  border: none;
  padding: 5px 10px;
  color: var(--text-main);
  cursor: pointer;
}

.qty-value {
  min-width: 30px;
  text-align: center;
  font-size: 0.9rem;
}

.ticket-card.selected {
  border-color: rgba(201, 163, 78, 1);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 1);
  background: radial-gradient(circle at top, #26344d, #050811 80%);
}

.ticket-card.selected::before {
  opacity: 1;
}

.ticket-disclaimer {
  margin-top: 22px;
  font-size: 0.84rem;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 1024px) {
  .ticket-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ticket-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px 0 36px;
  background: linear-gradient(
    to top,
    rgba(5, 8, 17, 1) 0%,
    rgba(8, 14, 26, 0.98) 50%,
    rgba(5, 8, 17, 0.95) 100%
  );
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 163, 78, 0.3) 20%,
    rgba(201, 163, 78, 0.5) 50%,
    rgba(201, 163, 78, 0.3) 80%,
    transparent
  );
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  font-size: 0.88rem;
  position: relative;
}

.footer-org {
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-heading {
  font-weight: 700;
  margin: 0 0 12px;
  font-size: 1.05rem;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.footer-org p {
  margin: 0 0 10px;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-org p strong {
  color: var(--gold-soft);
  font-weight: 600;
}

.footer-age {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quick-links {
  text-align: right;
}

.support-links {
  text-align: left;
}
.footer-links  > div > a {
  display: block;
}

.footer-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-soft);
  transform: translateX(-4px);
}

.footer-links a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-org {
    padding-right: 0;
    border-right: none;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-links {
    text-align: left;
    padding-left: 0;
  }

  .footer-links a:hover {
    transform: translateX(4px);
  }
}

/* Modals & Popups */
.modal,
.popup,
.overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
}

.overlay {
  background: radial-gradient(circle at top, rgba(11, 18, 33, 0.95), rgba(1, 2, 6, 0.98));
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-med), visibility var(--transition-med);
}

.overlay.visible {
  opacity: 1;
  visibility: visible;
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
  z-index: 51;
}

.modal[aria-hidden="false"] {
  pointer-events: auto;
  visibility: visible;
}

.modal-dialog {
  pointer-events: auto;
  background: radial-gradient(circle at top left, #23314a, #050811 80%);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 22px 20px;
  width: 100%;
  max-width: 430px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
  transform: translateY(16px);
  opacity: 0;
  transition: opacity var(--transition-med), transform var(--transition-med);
  position: relative;
  z-index: 1;
}

.modal[aria-hidden="false"] .modal-dialog {
  opacity: 1;
  transform: translateY(0);
}

.modal-title {
  margin: 0 0 6px;
}

.modal-subtitle {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-row-inline {
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
}

.form-row-between {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.form-row label {
  font-size: 0.82rem;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="password"] {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 10, 20, 0.8);
  padding: 7px 10px;
  color: var(--text-main);
  font-size: 0.9rem;
  pointer-events: auto;
  cursor: text;
}

.form-row input[type="checkbox"] {
  margin-top: 2px;
}

.form-error {
  min-height: 16px;
  font-size: 0.78rem;
  color: #ffb0b0;
}

.form-row input:focus-visible {
  outline: 2px solid rgba(201, 163, 78, 0.8);
  outline-offset: 1px;
}

.popup {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
  z-index: 60;
}

.popup[hidden] {
  display: none;
}

.popup:not([hidden]) {
  pointer-events: auto;
  visibility: visible;
}

.popup-dialog {
  background: radial-gradient(circle at top left, #25324b, #050811 80%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 24px 24px 20px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.9);
  position: relative;
  pointer-events: auto;
  transform: translateY(16px);
  opacity: 0;
  transition: opacity var(--transition-med), transform var(--transition-med);
}

.popup:not([hidden]) .popup-dialog {
  opacity: 1;
  transform: translateY(0);
}

.popup-title {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: var(--text-main);
}

.popup-body {
  margin: 0 0 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.popup-close:hover {
  color: var(--text-main);
}

/* Basic content pages */
.page {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #32486a, #050811 80%);
  color: var(--text-main);
}

.page-main {
  padding: 32px 0 48px;
}

.page-header {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 12px;
}

.page-header h1 {
  margin: 0 0 4px;
}

.page-header p {
  margin: 0;
  color: var(--text-muted);
}

.page-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-main);
}

.page-content h2 {
  margin-top: 20px;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.page-content p {
  margin-top: 0;
  margin-bottom: 8px;
}

.page-content ul {
  margin-top: 4px;
  margin-bottom: 8px;
  padding-left: 20px;
}

.page-footer {
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 12px;
  margin-top: 20px;
}

/* Contact Card */
.contact-card {
  background: radial-gradient(circle at top left, #23314a, #0a101c 80%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 48px 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.contact-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.contact-tagline {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-main);
  margin: 0 0 48px;
  line-height: 1.5;
}

.contact-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.contact-column {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}

.contact-column-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.contact-details {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-details p {
  margin: 0 0 8px;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .contact-card {
    padding: 32px 24px;
    margin: 0 16px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-tagline {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .contact-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-icon {
    font-size: 2rem;
  }
}

/* Fixed Bottom Bar */
.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(5, 8, 17, 0.98), rgba(8, 14, 26, 0.95));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.fixed-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  transition: opacity var(--transition-fast);
  white-space: nowrap;
}

.fixed-bar-item:hover {
  opacity: 0.8;
}

.fixed-bar-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.fixed-bar-icon-age {
  background: rgba(138, 43, 226, 0.3);
  border: 1px solid rgba(138, 43, 226, 0.5);
  color: var(--text-main);
}

.fixed-bar-icon-shield {
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid rgba(40, 167, 69, 0.4);
  color: var(--text-main);
  font-size: 0.75rem;
}

.fixed-bar-icon-info {
  background: rgba(0, 123, 255, 0.2);
  border: 1px solid rgba(0, 123, 255, 0.4);
  color: var(--text-main);
  font-style: italic;
  font-weight: 600;
}

.fixed-bar-icon-exclusion {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.4);
  color: var(--text-main);
  font-size: 1rem;
}

.fixed-bar-text {
  color: var(--text-main);
  font-size: 0.85rem;
}

.fixed-bar-licenses {
  cursor: default;
}

.fixed-bar-licenses .fixed-bar-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Add padding to body to prevent content from being hidden behind fixed bar */
body {
  padding-bottom: 70px;
}

.page {
  padding-bottom: 70px;
}

@media (max-width: 1024px) {
  .fixed-bottom-bar {
    gap: 12px;
    padding: 10px 16px;
  }

  .fixed-bar-text {
    font-size: 0.8rem;
  }

  .fixed-bar-licenses .fixed-bar-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .fixed-bottom-bar {
    flex-direction: row;
    gap: 8px;
    padding: 10px 12px;
    max-height: 200px;
    overflow-y: auto;
  }

  .fixed-bar-item {
  }
  .fixed-bar-text {
    display: none;
  }
  .fixed-bar-licenses .fixed-bar-text {
    font-size: 0.7rem;
    display: none;
  }

  body {
    padding-bottom: 180px;
  }

  .page {
    padding-bottom: 180px;
  }
}

@media (max-width: 480px) {
  .fixed-bar-text {
    font-size: 0.75rem;
    display: none;
  }

  .fixed-bar-licenses .fixed-bar-text {
    font-size: 0.65rem;
    /* display: none; */
  }
}


.links-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}