:root {
  --prop-dark: #0f172a;
  --prop-darker: #020617;
  --prop-gold: #f59e0b;
  --prop-gold-light: #fcd34d;
  --prop-blue: #1e3a8a;
  --text: #cbd5e1;
  --text-muted: #94a3b8;
  --border: #1e293b;
  --card: #0b1220;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--prop-darker);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 14px;
  color: #fff;
  font-weight: 900;
}

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

.muted {
  color: var(--text-muted);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 6, 23, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.nav-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 120px;
  height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
}

.links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.links a {
  font-weight: 700;
  color: #fff;
}

.links a.active,
.links a:hover {
  color: var(--prop-gold);
}

.btn {
  color: #071634 !important;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--prop-gold), var(--prop-gold-light));
  color: #111827;
}

.menu-btn {
  display: none;
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 1.6rem;
}

.mobile-menu {
  display: none;
  padding: 0 0 14px;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-weight: 700;
  border-top: 1px solid var(--border);
}

.hero {
  min-height: 84vh;
  /* background: linear-gradient(180deg, rgba(2, 6, 23, .75), rgba(2, 6, 23, .97)), url("../images/hero-bg.svg") center/cover; */
  display: flex;
  align-items: center;
}

.home-banner {
  min-height: 90vh;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0.25)),
    url("../images/PC_Website Banner.jpeg") center center / contain no-repeat;
  display: flex;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, .35);
  color: var(--prop-gold);
  background: rgba(15, 23, 42, 0.82);
  box-shadow: inset 0 0 0 1px rgba(30, 41, 59, 0.45);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .045em;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--prop-gold);
}

.pill-ring {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #22d3ee;
  display: inline-block;
}

.pill-cyan {
  color: #67e8f9;
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.15);
}

.hero h1 {
  font-size: clamp(2.2rem, 8vw, 6.2rem);
  line-height: .95;
  margin: 18px 0;
  color: #fff;
  font-weight: 900;
}

.hero h1 span {
  color: var(--prop-gold);
}

.hero p {
  max-width: 760px;
  font-size: clamp(1.03rem, 2vw, 1.45rem);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.stat {
  background: linear-gradient(180deg, rgba(30, 58, 138, .25), rgba(11, 18, 32, .92));
  border: 1px solid #24324a;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--prop-gold);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 900;
}

.stat .muted {
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .78rem;
  color: #e2e8f0;
  font-weight: 700;
}

.hero-event-bar {
  margin: 18px auto 0;
  max-width: 920px;
  border-radius: 999px;
  border: 1px solid #24324a;
  background: linear-gradient(90deg, rgba(15, 23, 42, .96), rgba(11, 18, 32, .96));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px 12px 28px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .45);
}

.hero-event-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-event-item strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.15;
}

.hero-event-item span {
  display: block;
  color: var(--prop-gold);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.hero-event-item:nth-of-type(2) span {
  color: #94a3b8;
}

.hero-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(245, 158, 11, 0.12);
}

.hero-sep {
  width: 1px;
  height: 44px;
  background: #334155;
}

.hero-pass-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 34px;
  background: linear-gradient(90deg, #fbbf24, #facc15);
  color: #111827;
  font-weight: 900;
  font-size: 1.02rem;
}

.hero-offer {
  margin: 16px auto;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid rgba(16, 185, 129, .25);
  background: rgba(6, 78, 59, .35);
  color: #d1fae5;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .94rem;
}

.hero-offer s {
  color: #cbd5e1;
}

.hero-offer strong {
  color: #4ade80;
}

.countdown-section {
  margin: 30px auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
}

.countdown-card {
  background: rgba(15, 23, 42, .88);
  border: 1px solid rgba(245, 158, 11, .15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
}

.countdown-value {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 900;
  color: #edf2f7;
  letter-spacing: -0.03em;
}

.countdown-label {
  margin-top: 10px;
  color: var(--prop-gold);
  font-weight: 800;
  letter-spacing: .12em;
  font-size: .8rem;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .countdown-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .countdown-section {
    grid-template-columns: 1fr;
  }
}

/* Centered CTA used in Event Highlights */
.cta-center {
  text-align: center;
  margin-top: 28px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(90deg, #1e3a8a, #2746b0);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 36px;
  border-radius: 999px;
  border: 1px solid rgba(30, 64, 175, 0.9);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.45);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.cta-btn:hover,
.cta-btn:focus {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.6);
  opacity: 0.98;
}

.cta-btn:active {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .cta-btn {
    padding: 12px 28px;
    font-size: 0.98rem;
  }
}

@media (max-width: 640px) {
  .cta-btn {
    display: block;
    width: min(360px, 86%);
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 0.98rem;
  }
}

.historic-section {
  /* background: linear-gradient(180deg, rgba(30, 58, 138, .96), rgba(30, 64, 175, .9)); */
  /* background: #071634; */
}

.historic-layout {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 22px;
  align-items: stretch;
}

.historic-left .title {
  margin: 10px 0 18px;
}

.historic-pill {
  display: inline-block;
  border: 1px solid rgba(245, 158, 11, .4);
  background: rgba(15, 23, 42, .45);
  color: var(--prop-gold);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.historic-left .muted {
  color: #e2e8f0;
  line-height: 1.62;
  font-size: 1.03rem;
}

.historic-left strong {
  color: #fff;
}

.historic-quote {
  margin-top: 18px;
  background: rgba(15, 23, 42, .35);
  border-left: 3px solid var(--prop-gold);
  border-radius: 14px;
  padding: 16px 16px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 700;
}

.historic-access {
  background: rgba(2, 6, 23, .92);
  border: 1px solid #263854;
  border-radius: 28px;
  padding: 24px 24px 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
}

.historic-access h3 {
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #1e293b;
  text-align: center;
  color: #fff;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 900;
}

.access-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}

.access-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(30, 41, 59, .85);
}

.access-list strong {
  display: block;
  color: #fff;
  font-size: 1.03rem;
}

.access-list p {
  margin: 4px 0 0;
  color: #94a3b8;
  line-height: 1.45;
  font-size: .95rem;
}

.event-highlights {
  background: #071634;
}

.event-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

event-head-countdown {
  text-align: center;
  max-width: 760px;
  margin: 28px auto 28px;
}

.event-head .title {
  margin-bottom: 12px;
}

.event-head .muted {
  color: #94a3b8;
  font-size: 1.03rem;
}

.event-head-countdown .title {
  margin-bottom: 12px;
}

.event-head-countdown .muted {
  color: #94a3b8;
  font-size: 1.03rem;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-card {
  background: rgba(2, 6, 23, .96);
  border: 1px solid #17263f;
  border-radius: 18px;
  padding: 20px 20px 18px;
}

.event-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.18rem;
  background: rgba(30, 58, 138, .35);
  margin-bottom: 12px;
}

.event-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.3rem, 1.6vw, 1.9rem);
  line-height: 1.2;
}

.event-card p {
  margin: 0;
  color: #94a3b8;
  font-size: .96rem;
  line-height: 1.45;
}

.leadership-section {
  background: var(--prop-darker);
}

.leadership-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.leadership-head .muted {
  color: #94a3b8;
  font-size: 1.03rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.leadership-card {
  position: relative;
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 24px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
}

.leadership-card-featured {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.1);
}

@media (min-width: 981px) {
  .leadership-card-featured {
    transform: translateY(-12px);
  }
}

.leadership-quote {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(30, 41, 59, 0.55);
  font-family: Georgia, serif;
  pointer-events: none;
}

.leadership-quote-gold {
  color: rgba(245, 158, 11, 0.12);
}

.leadership-meta {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.leadership-meta h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}

.leadership-meta .role {
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.role-cyan {
  color: #22d3ee;
}

.role-gold {
  color: var(--prop-gold);
}

.role-blue {
  color: #60a5fa;
}

.leadership-card blockquote {
  margin: 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  color: #cbd5e1;
  font-size: .98rem;
  line-height: 1.6;
  font-style: italic;
}

.attend-section {
  /* background: linear-gradient(180deg, rgba(30, 64, 175, .88), rgba(30, 58, 138, .9)); */
  background: #071634;
}

.attend-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 26px;
}

.attend-head .muted {
  color: #dbeafe;
  font-size: 1.03rem;
}

.attend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.attend-card {
  background: rgba(15, 23, 42, .9);
  border: 1px solid #2d4264;
  border-radius: 16px;
  padding: 18px 18px 16px;
}

.attend-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.attend-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--prop-gold);
  color: var(--prop-gold);
  display: inline-grid;
  place-items: center;
  font-weight: 900;
  font-size: .75rem;
}

.attend-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
}

.attend-card p {
  margin: 0;
  color: #dbeafe;
  font-size: .98rem;
  line-height: 1.5;
}

.sponsors-page {
  background: #020b25;
}

.sponsors-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 26px;
}

.sponsors-head .muted {
  color: #94a3b8;
  font-size: 1.03rem;
}

.sponsor-title {
  margin-bottom: 18px;
  padding: 26px 24px 20px;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sponsors-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 1rem;
}

.sponsor-card {
  background: linear-gradient(180deg, rgba(30, 58, 138, .25), rgba(10, 19, 40, .96));
  border: 1px solid #1e2f4d;
  border-radius: 16px;
  padding: 18px 16px 16px;
  text-align: center;
}

.sponsor-card-highlight {
  border-color: rgba(245, 158, 11, 0.35);
}

.role-pill {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(30, 41, 59, .85);
  color: var(--prop-gold);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

.sponsor-logo-frame {
  background: #fff;
  border-radius: 10px;
  /* padding: 12px; */
  width: min(170px, 100%);
  margin: 0 auto 12px;
}

.sponsor-white-logo-frame {
  border-radius: 10px;
  padding: 12px;
  width: min(170px, 100%);
  margin: 0 auto 12px;
}

.sponsor-logo-frame img {
  height: 10rem;
  object-fit: contain;
}

.sponsor-logo-lg {
  width: min(310px, 100%);
}

.sponsor-logo-lg img {
  height: 10rem;
}

.sponsor-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 2rem;
  font-size: clamp(1.2rem, 1.7vw, 2rem);
}

.sponsor-card p {
  margin: 0;
  color: #94a3b8;
  font-size: .93rem;
  line-height: 1.45;
}

.lineup-list {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.lineup-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(180deg, rgba(30, 58, 138, .22), rgba(10, 19, 40, .96));
  border: 1px solid #1f3151;
  border-radius: 16px;
  padding: 26px 26px;
}

.lineup-icon {
  flex-shrink: 0;
  margin-bottom: 0;
}

.lineup-item h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  line-height: 1.15;
}

.lineup-item p {
  margin: 0;
  color: #94a3b8;
  font-size: 1.02rem;
  line-height: 1.5;
}

.card {
  background: #0b1220;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sponsor-logo {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  margin: 14px 0;
}

.sponsor-logo img {
  height: 96px;
  object-fit: contain;
}

.poster img {
  border-radius: 14px;
  aspect-ratio: 3/4;
  object-fit: cover;
}

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

.gallery img {
  height: 230px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.leaders {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.leader {
  text-align: center;
}

.leader img {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  margin: 0 auto 10px;
  border: 3px solid var(--border);
}

.form-group {
  margin-bottom: 16px;
}

label {
  display: block;
  margin-bottom: 6px;
  color: #cbd5e1;
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #334155;
  background: #020617;
  color: #fff;
}

input:focus {
  outline: 2px solid rgba(245, 158, 11, .4);
  border-color: var(--prop-gold);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  background: var(--prop-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.qr-wrap {
  display: flex;
  gap: 12px;
}

.qr-wrap img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  background: #fff;
  padding: 6px;
}

/* Footer upload / QR placeholder styles */
.upload-box {
  width: 160px;
  height: 72px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-weight: 700;
}

.qr-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  border: 2px dashed rgba(148, 163, 184, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  flex-direction: column;
  gap: 6px;
  background: transparent;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
}

.contact-icon {
  color: var(--prop-gold);
  font-size: 1.05rem;
  line-height: 1;
  margin-top: 2px;
}

@media (max-width: 980px) {
  .links {
    display: none;
  }

  .home-banner {
    min-height: 40vh;
  }

  .menu-btn {
    display: block;
  }

  .mobile-menu.show {
    display: block;
  }

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

  .hero-event-bar {
    border-radius: 22px;
    padding: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-sep {
    display: none;
  }

  .hero-pass-btn {
    width: 100%;
  }

  .historic-layout {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .leadership-card-featured {
    transform: none;
  }

  .lineup-item {
    padding: 20px;
    gap: 14px;
  }

  .grid-3,
  .gallery,
  .leaders {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {

  .section,
  .hero-badges {
    padding: 56px 0;
  }

  .home-banner {
    min-height: 25vh;
  }

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

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

  .sponsors-grid-2 {
    grid-template-columns: 1fr;
  }

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

  .lineup-item {
    flex-direction: column;
  }

  .grid-2,
  .grid-3,
  .gallery,
  .leaders {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 96px;
    height: 48px;
  }
}