/* =======================================
   GLOBAL
======================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #020617;
  color: #e8e8e8;
  line-height: 1.6;
}

/* =======================================
   NAVBAR
======================================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    to right,
    rgba(3, 7, 18, 0.9),
    rgba(15, 52, 96, 0.9),
    rgba(3, 7, 18, 0.9)
  );
  backdrop-filter: blur(10px);
  padding: 10px 60px;
  border-bottom: 1px solid #0b1738;
  height: 85px;
  position: relative;       /* REQUIRED for menu overlay */
  z-index: 1000;            /* REQUIRED to show above slider */
}

.logo img {
  height: 115px;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #dcdcdc;
  font-size: 18px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f5c518;
}

/* Hamburger (hidden desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
}




/* =======================================
   RESPONSIVE
======================================= */
@media (max-width: 900px) {
  .founder-content {
    flex-direction: column;
    text-align: center;
  }

  .founder-image img {
    width: 250px;
  }
}

@media (max-width: 768px) {

  .navbar {
    padding: 15px 20px;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Hide desktop menu */
  .nav-links {
    position: absolute;
    top: 85px;
    right: 0;
    width: 100%;
    background: #030a1a;
    flex-direction: column;
    gap: 25px;
    padding: 25px 0;
    display: none;
    text-align: center;
    border-top: 1px solid #0b1738;
    animation: slideDown 0.3s ease forwards;
  }

  /* Show mobile menu */
  .nav-links.open {
    display: flex;
  }

  /* Slide animation */
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .news-slider {
    height: 240px;
    max-width: 97%;
  }

  .caption {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}



/* =======================
         FOOTER
=========================== */

.bp-footer {
  background: #020B25; /* Same as your website's dark theme */
  padding: 60px 20px;
  color: #e2e8f0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bp-footer-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.bp-footer-section h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #60a5fa; /* Soft Blue Accent */
  font-weight: 600;
}

.bp-footer-section ul {
  list-style: none;
  padding: 0;
}

.bp-footer-section ul li {
  margin-bottom: 12px;
}

.bp-footer-section ul li a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 16px;
  transition: 0.2s;
}

.bp-footer-section ul li a i {
  margin-right: 10px;
  color: #60a5fa; /* Matching blue accent */
}

.bp-footer-section ul li a:hover {
  color: white;
  transform: translateX(4px);
}

.bp-footer-section p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .bp-footer-container {
    flex-direction: column;
  }
}



/* ===============================
   TOP TAGLINE TICKER (UNDER NAV)
================================ */
/* ===============================
   FIXED TAGLINE TICKER (UNDER NAV)
================================ */
.tagline-ticker {
  position: relative;
  top: 8px;                 /* navbar height */
  left: 0;
  width: 100%;
  height: 36px;
  background: linear-gradient(90deg, #000814, #020617);
  border-bottom: 1px solid #0b1738;
  overflow: hidden;
  z-index: 2000;
  display: flex;
  align-items: center;
}

/* Scrolling track */
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerMove 20s linear infinite;
}

.ticker-track span {
  color: #f5c542;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 0 40px;
  font-weight: 500;
}

/* Animation */
@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .tagline-ticker {
    top: 10px;
    height: 32px;
  }

  .ticker-track span {
    font-size: 12px;
    padding: 0 24px;
  }
}

.navbar {
  z-index: 3000;
}

.nav-links {
  z-index: 2500;
}

.tagline-ticker {
  z-index: 2000;
}
.nav-links.open ~ .tagline-ticker {
  pointer-events: none;
}

@media (max-width: 768px) {
  .logo img {
    height: 95px;
  }
}




/* =====================================
   GIVEAWAY FORM – MOBILE FIRST
===================================== */

.giveaway-section {
  width: 100%;
  padding: 1.5rem 1rem;
  background: #020617;
  color: #e8e8e8;
}

/* Container */
.giveaway-section form {
  max-width: 520px;
  margin: auto;
  background: linear-gradient(180deg, #020617, #020617);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}

/* Headings */
.giveaway-section h2 {
  font-size: 1.9rem;
  text-align: center;
  margin-bottom: 0.4rem;
}

.giveaway-section p {
  text-align: center;
  font-size: 1.5rem;
  color: #94a3b8;
  margin-bottom: 1.6rem;
}

.giveaway-section h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 0.8rem;
}

/* Fields */
.field {
  margin-bottom: 1rem;
}

label {
  font-size: 0.85rem;
  margin-bottom: 6px;
  display: block;
  color: #cbd5f5;
}

input {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: none;
  background: #0f172a;
  color: #fff;
  font-size: 0.95rem;
}

input::placeholder {
  color: #64748b;
}

input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(59,130,246,0.4);
}

/* Follow Section */
.follow-box {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

/* Buttons */
.follow-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 14px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: white;
}

/* Instagram */
.follow-btn.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

/* YouTube */
.follow-btn.youtube {
  background: #ff0000;
}

/* Checkbox */
.check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #cbd5f5;
}

.check input {
  width: auto;
  transform: scale(1.1);
}

/* Submit Button */
.submit-btn {
  width: 100%;
  margin-top: 1.4rem;
  padding: 0.9rem;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, #a2eb25, #36e310);
  color: rgb(0, 0, 0);
  font-size: 1rem;
  font-weight: 200;
  cursor: pointer;
}

.submit-btn:hover {
  opacity: 0.95;
}

/* Utilities */
.hidden {
  display: none;
}

/* =====================================
   TABLET ( ≥ 640px )
===================================== */
@media (min-width: 640px) {

  .giveaway-section {
    padding: 2rem;
  }

  .giveaway-section form {
    padding: 2rem;
  }

  .follow-box {
    flex-direction: row;
    align-items: center;
  }

  .follow-btn {
    width: auto;
    flex: 1;
  }

  .check {
    white-space: nowrap;
  }
}

/* =====================================
   DESKTOP ( ≥ 1024px )
===================================== */
@media (min-width: 1024px) {

  .giveaway-section form {
    max-width: 560px;
  }

  .giveaway-section h2 {
    font-size: 1.8rem;
  }

  .submit-btn {
    padding: 1rem;
    font-size: 1.05rem;
  }
}
/* Make giveaway form wider on laptops & desktops */
@media (min-width: 1024px) {
  .giveaway-section form {
    max-width: 820px;   /* increase width */
  }
}






.success-msg {
  margin-top: 20px;
  color: #4ade80; /* soft green */
  font-weight: 500;
  text-align: center;
}

.hidden {
  display: none;
}
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
}

.empty-state h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.empty-state p {
  font-size: 14px;
  line-height: 1.6;
}





.f1-timer-section {
  padding: 100px 20px;
  background: #020617;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.f1-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

/* F1 Lights Styling */
.f1-lights {
  background: #111;
  padding: 15px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: -20px;
  position: relative;
  z-index: 10;
  border: 2px solid #333;
}

.light-post {
  display: flex;
  gap: 15px;
}

.light {
  width: 30px;
  height: 30px;
  background: #222;
  border-radius: 50%;
  border: 2px solid #000;
}

/* Light States */
.light.red.active { background: #ff0000; box-shadow: 0 0 20px #ff0000; }
.light.yellow.active { background: #ffcc00; box-shadow: 0 0 20px #ffcc00; }
.light.green.active { background: #00ff00; box-shadow: 0 0 20px #00ff00; }

/* The Dome Track */
.f1-dome {
  position: relative;
  background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
  border: 4px solid #1e293b;
  border-radius: 50% 50% 20px 20px;
  padding: 80px 40px 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.track {
  position: absolute;
  top: 10px; left: 10px; right: 10px; bottom: 10px;
  border-radius: 50% 50% 20px 20px;
  pointer-events: none;
}

/* Car Animation around the dome */
.car {
  position: absolute;
  color: #f5c518;
  font-size: 1.5rem;
  offset-path: border-box; /* Modern CSS pathing */
  animation: race 6s linear infinite;
}

.car-2 { animation-delay: -3s; color: #fff; }

@keyframes race {
  0% { offset-distance: 0%; transform: rotate(0deg); }
  100% { offset-distance: 100%; transform: rotate(0deg); }
}

/* Content inside dome */
.f1-content { position: relative; z-index: 5; }

.grid-label { font-size: 10px; letter-spacing: 3px; color: #64748b; }
.giveaway-title { color: #f5c518; margin: 10px 0 30px; font-style: italic; }

.f1-countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.time-block span {
  font-size: 2.8rem;
  font-weight: 800;
  display: block;
  font-family: 'Courier New', monospace;
}

.time-block p { font-size: 10px; color: #94a3b8; }

/* Sector Purple = Fastest Lap vibe */
.sector-purple span {
  color: #a855f7;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.f1-footer {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #475569;
  border-top: 1px dashed #334155;
  padding-top: 15px;
}





.gw-section {
  width: 100%;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
 
.gw-outer {
  width: 100%;
  max-width: 780px;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}
 
/* ── Header ─────────────────────────────────────────────── */
.gw-header {
  padding: 36px 44px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
  gap: 32px;
}
 
.gw-header-left {
  flex: 1;
  min-width: 0;
}
 
.gw-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
 
.gw-pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #e74c3c;
  transition: background 0.4s ease;
}
 
.gw-kicker-text {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}
 
.gw-title {
  font-size: 26px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.93);
  line-height: 1.3;
  margin-bottom: 8px;
}
 
.gw-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.6;
}
 
/* ── Ring ───────────────────────────────────────────────── */
.gw-ring-wrap {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  position: relative;
}
 
.gw-ring-wrap svg {
  width: 100px;
  height: 100px;
  transform: rotate(-90deg);
  display: block;
}
 
.gw-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
 
.gw-ring-num {
  font-size: 28px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.93);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
 
.gw-ring-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}
 
/* ── Digit grid ─────────────────────────────────────────── */
.gw-digits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}
 
.gw-digit-cell {
  padding: 30px 12px 24px;
  text-align: center;
  border-right: 0.5px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
 
.gw-digit-cell:last-child {
  border-right: none;
}
 
.gw-cell-accent {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
 
.gw-cell-accent.amber {
  background: #c8890a;
}
 
.gw-num {
  display: block;
  font-size: 52px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.93);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
 
.gw-unit {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 10px;
  font-weight: 500;
}
 
/* ── Footer ─────────────────────────────────────────────── */
.gw-footer {
  padding: 22px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
 
.gw-track {
  flex: 1;
  min-width: 0;
}
 
.gw-track-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
 
.gw-track-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.06em;
}
 
.gw-track-pct {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-variant-numeric: tabular-nums;
}
 
.gw-track-rail {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
  overflow: hidden;
}
 
.gw-track-fill {
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 1px;
  transition: width 1s linear;
}
 
.gw-vdivider {
  width: 0.5px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}
 
.gw-opens {
  flex-shrink: 0;
  text-align: right;
}
 
.gw-opens-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}
 
.gw-opens-date {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.87);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
 
/* ── Tablet ─────────────────────────────────────────────── */
@media (max-width: 680px) {
  .gw-section {
    padding: 40px 16px;
  }
 
  .gw-header {
    padding: 26px 28px 22px;
    gap: 20px;
  }
 
  .gw-title {
    font-size: 20px;
  }
 
  .gw-ring-wrap,
  .gw-ring-wrap svg {
    width: 80px;
    height: 80px;
  }
 
  .gw-ring-num {
    font-size: 22px;
  }
 
  .gw-num {
    font-size: 36px;
  }
 
  .gw-digit-cell {
    padding: 22px 8px 18px;
  }
 
  .gw-footer {
    padding: 18px 28px;
  }
 
  .gw-opens-date {
    font-size: 16px;
  }
}
 
/* ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 440px) {
  .gw-section {
    padding: 28px 12px;
  }
 
  .gw-header {
    padding: 20px 20px 18px;
    gap: 14px;
  }
 
  .gw-title {
    font-size: 17px;
  }
 
  .gw-desc {
    font-size: 12px;
  }
 
  .gw-ring-wrap,
  .gw-ring-wrap svg {
    width: 64px;
    height: 64px;
  }
 
  .gw-ring-num {
    font-size: 18px;
  }
 
  .gw-ring-label {
    font-size: 8px;
  }
 
  .gw-num {
    font-size: 26px;
  }
 
  .gw-unit {
    font-size: 8px;
    margin-top: 7px;
  }
 
  .gw-digit-cell {
    padding: 16px 4px 14px;
  }
 
  .gw-footer {
    padding: 14px 20px;
    flex-wrap: wrap;
    gap: 14px;
  }
 
  .gw-track {
    flex: 1 1 100%;
    order: 2;
  }
 
  .gw-vdivider {
    display: none;
  }
 
  .gw-opens {
    order: 1;
    text-align: left;
    flex: 1 1 auto;
  }
 
  .gw-opens-date {
    font-size: 15px;
  }
}
.gw-section {
  width: 100%;
  min-height: 100vh; /* makes it vertically centered on screen */
  padding: 100px 24px; /* top & bottom spacing */
  
  display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; /* horizontal center */

  background: transparent;
  box-sizing: border-box;
}
.gw-section {
  width: 100%;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 80px 20px;
  margin: 0 auto;

  box-sizing: border-box;
}
.gw-outer {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;

  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  overflow: hidden;
}
.gw-section {
  padding: 140px 24px;
}
.gw-section {
  margin-top: 120px !important;
  margin-bottom: 120px !important;

  padding-top: 0 !important;
  padding-bottom: 0 !important;
}