/* ─── DESIGN SYSTEM FOR AUDACITY GAMES GLOBAL (AXG) ─── */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;700&display=swap');

:root {
  /* Color Palette - Premium HSL Tailored */
  --navy: #0A0F1E;
  --navy-mid: #111829;
  --navy-light: #1A2340;
  
  --gold: #C9982B;
  --gold-light: #E8BE5A;
  --gold-pale: #F5E6B8;
  
  --white: #F5F0E8;
  --off-white: #EAE4D5;
  --gray: #8A8A8A;
  
  --teal: #1FBFB8;
  --teal-light: #48d1cc;
  --teal-pale: #e0fcfb;
  
  --red: #C0392B;
  --black: #05070D;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

.font-bebas {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}

.font-playfair {
  font-family: 'Playfair Display', serif;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 152, 43, 0.2);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo span {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--off-white);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
}

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

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 0.55rem 1.4rem;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Currency switcher */
.currency-switcher {
  display: flex;
  background: var(--navy-light);
  border: 1px solid rgba(201, 152, 43, 0.2);
  border-radius: 4px;
  padding: 2px;
}

.currency-btn {
  background: transparent;
  border: none;
  color: var(--gray);
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
}

.currency-btn.active {
  background: var(--gold);
  color: var(--navy);
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 4rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201, 152, 43, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(31, 191, 184, 0.06) 0%, transparent 50%),
    linear-gradient(160deg, #0A0F1E 0%, #0D1525 50%, #0A0F1E 100%);
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-diagonal {
  position: absolute;
  top: 0;
  right: 15%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201, 152, 43, 0.3), transparent);
  transform: rotate(15deg) scaleY(1.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  text-align: left;
  margin-right: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201, 152, 43, 0.12);
  border: 1px solid rgba(201, 152, 43, 0.4);
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-title .gold {
  color: var(--gold);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.85em;
  font-weight: normal;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gold-pale);
  margin: 1.5rem 0 2.5rem;
  max-width: 620px;
  line-height: 1.5;
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s ease both;
}

.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  display: flex;
  gap: 3rem;
  z-index: 2;
  animation: fadeUp 0.8s 0.8s ease both;
}

.stat {
  text-align: right;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.2rem;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 2.4rem;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(201, 152, 43, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--teal);
  padding: 1rem 2rem;
  border: 1px solid rgba(31, 191, 184, 0.4);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-ghost:hover {
  background: rgba(31, 191, 184, 0.08);
  border-color: var(--teal);
  transform: translateY(-2px);
}

/* ─── SECTION STRUCTURES ─── */
section {
  padding: 8rem 4rem;
  position: relative;
  z-index: 2;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.section-title span {
  color: var(--gold);
}

.section-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--off-white);
  max-width: 650px;
}

/* ─── ABOUT SECTION ─── */
#about {
  background: var(--navy-mid);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--navy-light);
  border: 1px solid rgba(201, 152, 43, 0.15);
  padding: 2.5rem;
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.about-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.about-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.about-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--off-white);
}

.about-quote {
  background: linear-gradient(135deg, rgba(201, 152, 43, 0.08), rgba(201, 152, 43, 0.02));
  border: 1px solid rgba(201, 152, 43, 0.25);
  padding: 2.5rem;
  margin-top: 2rem;
  position: relative;
  border-radius: 4px;
}

.about-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--gold-pale);
  margin-bottom: 1rem;
}

.about-quote cite {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  display: block;
}

/* ─── PLATFORM MODEL ─── */
.platform-model {
  margin-top: 5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201, 152, 43, 0.2);
  margin-top: 3rem;
  border-radius: 4px;
  overflow: hidden;
}

.platform-cell {
  background: var(--navy-mid);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.platform-cell:hover {
  background: var(--navy-light);
}

.platform-cell .icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.platform-cell h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.platform-cell p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray);
}

/* ─── THE GAMES SECTION ─── */
#games {
  background: var(--navy);
}

.games-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.scale-blocks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.scale-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--navy-light);
  border: 1px solid rgba(201, 152, 43, 0.15);
  padding: 1.2rem 1.5rem;
  transition: all 0.3s;
  border-radius: 4px;
}

.scale-block:hover {
  border-color: rgba(201, 152, 43, 0.5);
  background: rgba(26, 35, 64, 0.6);
}

.scale-block .year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  min-width: 80px;
  letter-spacing: 0.05em;
}

.scale-block .info h5 {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.scale-block .info p {
  font-size: 0.78rem;
  color: var(--gray);
}

.games-categories {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.category-card:hover {
  border-color: rgba(201, 152, 43, 0.3);
  transform: translateY(-5px);
  background: var(--navy-light);
}

.category-card:hover::after {
  transform: scaleX(1);
}

.category-card .cat-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.category-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.category-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.category-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  background: rgba(201, 152, 43, 0.08);
  border: 1px solid rgba(201, 152, 43, 0.2);
  color: var(--gold);
  border-radius: 2px;
}

.tag.teal {
  background: rgba(31, 191, 184, 0.08);
  border-color: rgba(31, 191, 184, 0.2);
  color: var(--teal);
}

/* ─── YOUTH & TALENT (ATOS BOX) ─── */
#talent {
  background: var(--navy-mid);
}

.talent-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: start;
}

.talent-features {
  margin-top: 2rem;
}

.talent-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.talent-feature:last-child {
  border-bottom: none;
}

.feat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: rgba(201, 152, 43, 0.25);
  line-height: 1;
  min-width: 50px;
}

.feat-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.feat-content p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.atos-box {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1px solid rgba(31, 191, 184, 0.25);
  padding: 2.5rem;
  position: sticky;
  top: 8rem;
  border-radius: 4px;
}

.atos-box .atos-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.atos-box h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--white);
}

.atos-box p {
  font-size: 0.85rem;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.atos-modules {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.atos-module {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: var(--off-white);
}

.atos-module::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  flex-shrink: 0;
  border-radius: 50%;
}

.atos-box .btn-teal {
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal);
  padding: 0.8rem;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
  font-weight: 600;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.atos-box .btn-teal:hover {
  background: rgba(31, 191, 184, 0.1);
  transform: translateY(-1px);
}

/* ─── LEADERSHIP UPGRADE ─── */
#leadership {
  background: var(--navy);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

/* Founder spanning 2 columns or highlighted */
.founder-card {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(201, 152, 43, 0.08), var(--navy-mid));
  border: 1px solid rgba(201, 152, 43, 0.35);
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: 4px;
}

.founder-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  background: var(--navy-light);
  box-shadow: 0 0 20px rgba(201, 152, 43, 0.2);
}

.founder-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.founder-info .role {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--white);
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.founder-info p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

.leader-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.leader-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 152, 43, 0.25);
  background: var(--navy-light);
}

.leader-card .avatar-placeholder {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(201, 152, 43, 0.1);
  border: 1px solid rgba(201, 152, 43, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  color: var(--gold);
}

.leader-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.leader-card .role {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.leader-card p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── TICKET & SPONSORSHIP TIERS ─── */
#tickets {
  background: var(--navy-mid);
}

.tickets-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.tickets-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.ticket-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 2rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.ticket-card.highlight {
  border-color: rgba(201, 152, 43, 0.5);
  background: linear-gradient(180deg, rgba(201, 152, 43, 0.08) 0%, var(--navy-mid) 100%);
}

.ticket-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 152, 43, 0.35);
}

.ticket-badge {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 1.2rem;
  border: 1px solid;
  align-self: center;
}

.ticket-card.tier-5 .ticket-badge { color: var(--gold); border-color: var(--gold); background: rgba(201,152,43,0.1); }
.ticket-card.tier-4 .ticket-badge { color: var(--teal); border-color: var(--teal); background: rgba(31,191,184,0.08); }
.ticket-card.tier-3 .ticket-badge { color: #9B59B6; border-color: #9B59B6; background: rgba(155,89,182,0.08); }
.ticket-card.tier-2 .ticket-badge { color: #3498DB; border-color: #3498DB; background: rgba(52,152,219,0.08); }
.ticket-card.tier-1 .ticket-badge { color: var(--white); border-color: rgba(255,255,255,0.2); }

.ticket-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.ticket-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ticket-price .currency-label {
  font-size: 0.8rem;
  color: var(--gray);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.1em;
}

.ticket-benefits {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
  font-size: 0.78rem;
  color: var(--off-white);
  flex-grow: 1;
}

.ticket-benefits li {
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ticket-benefits li::before {
  content: '✓';
  color: var(--gold);
}

.ticket-card .btn-ticket {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}

.ticket-card .btn-ticket:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* Bank Details Banner */
.bank-payment-banner {
  max-width: 1200px;
  margin: 3rem auto 0;
  background: linear-gradient(135deg, var(--navy-light), rgba(201, 152, 43, 0.03));
  border: 1px solid rgba(201, 152, 43, 0.25);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
}

.bank-info-group {
  display: flex;
  gap: 3rem;
}

.bank-card {
  background: rgba(10, 15, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 4px;
}

.bank-card h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.bank-account-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-copy {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.btn-copy:hover {
  color: var(--gold-light);
}

.bank-instruction p {
  font-size: 0.82rem;
  color: var(--gray);
  max-width: 400px;
  line-height: 1.5;
}

.bank-instruction p strong {
  color: var(--white);
}

/* ─── PARTNERS SECTION ─── */
#partners {
  background: var(--navy);
}

.partners-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.partner-tier {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  transition: all 0.3s;
  border-radius: 4px;
}

.partner-tier.gold-tier {
  border-color: rgba(201, 152, 43, 0.3);
  background: linear-gradient(135deg, rgba(201, 152, 43, 0.05), var(--navy-mid));
}

.partner-tier:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 152, 43, 0.2);
}

.partner-tier h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.partner-tier p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.partner-benefits {
  list-style: none;
}

.partner-benefits li {
  font-size: 0.82rem;
  color: var(--off-white);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.partner-benefits li::before {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
}

/* ─── MEDIA SECTION ─── */
#media {
  background: var(--navy-mid);
}

.media-layout {
  max-width: 1200px;
  margin: 0 auto;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.press-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

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

.press-card:hover {
  border-color: rgba(201, 152, 43, 0.3);
  background: var(--navy-mid);
}

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

.press-date {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.press-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.press-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

.press-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  background: rgba(201, 152, 43, 0.08);
  border: 1px solid rgba(201, 152, 43, 0.2);
  color: var(--gold);
  border-radius: 2px;
}

.broadcast-banner {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--navy-light), rgba(31, 191, 184, 0.05));
  border: 1px solid rgba(31, 191, 184, 0.25);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-radius: 4px;
}

.broadcast-banner h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.broadcast-banner p {
  font-size: 0.9rem;
  color: var(--off-white);
  margin-top: 0.5rem;
  max-width: 500px;
}

/* ─── CONTACT SECTION ─── */
#contact {
  background: var(--navy);
  padding-bottom: 6rem;
}

.contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info {
  margin-top: 2rem;
}

.contact-channel {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-channel:last-child {
  border-bottom: none;
}

.channel-icon {
  font-size: 1.5rem;
  min-width: 40px;
  color: var(--gold);
}

.channel-content h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.channel-content p {
  font-size: 0.85rem;
  color: var(--gray);
}

.channel-content a {
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.3s;
}

.channel-content a:hover {
  color: var(--gold);
}

.contact-form-area {
  background: var(--navy-light);
  border: 1px solid rgba(201, 152, 43, 0.2);
  padding: 3rem;
  margin-top: 2rem;
  border-radius: 4px;
}

.contact-form-area h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  border-radius: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 120px;
}

/* ─── FOOTER & BRANDING ─── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 152, 43, 0.15);
  padding: 4rem 4rem 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 2rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* ─── FLOATING FOOTER DECORATION ─── */
.floating-brand-footer {
  margin-top: 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Floating animation */
@keyframes footerFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating-brand-footer .floating-highlight {
  display: inline-block;
  font-weight: 700;
  animation: footerFloat 4s ease-in-out infinite;
}

.floating-brand-footer .sirhope {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(201, 152, 43, 0.3);
}

.floating-brand-footer .wyntech {
  color: var(--teal);
  text-shadow: 0 0 10px rgba(31, 191, 184, 0.3);
}

/* Toast Notification */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy-light);
  border: 1px solid var(--gold);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.toast-msg.show {
  transform: translateY(0);
}

.toast-msg i {
  color: var(--gold);
}

/* ─── KEYFRAME ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ─── MODAL TICKET BOOKING ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 13, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--navy-light);
  border: 1px solid rgba(201, 152, 43, 0.3);
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  border-radius: 4px;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--white);
}

.modal-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.modal-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* ─── RESPONSIVENESS ─── */
@media (max-width: 1024px) {
  .about-grid, .talent-layout, .contact-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .atos-box {
    position: relative;
    top: 0;
  }
  .games-categories {
    grid-template-columns: repeat(2, 1fr);
  }
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .founder-card {
    grid-column: span 2;
    flex-direction: column;
    text-align: center;
  }
  .tickets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tickets-grid .ticket-card:last-child {
    grid-column: span 2;
  }
  .bank-payment-banner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .bank-info-group {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1.2rem 2rem;
  }
  .nav-links {
    display: none; /* Can implement mobile burger toggle in future */
  }
  #hero {
    padding: 8rem 2rem 4rem;
  }
  .hero-stats {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 3rem;
    justify-content: flex-start;
  }
  section {
    padding: 6rem 2rem;
  }
  .games-header {
    grid-template-columns: 1fr;
  }
  .partners-grid, .media-grid {
    grid-template-columns: 1fr;
  }
  .games-categories, .leadership-grid, .tickets-grid {
    grid-template-columns: 1fr;
  }
  .founder-card, .tickets-grid .ticket-card:last-child {
    grid-column: span 1;
  }
  footer {
    padding: 4rem 2rem 2rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
}
