:root {
  --navy: #071d33;
  --navy-2: #0d2c48;
  --gold: #d4a928;
  --gold-light: #f5d76e;
  --white: #ffffff;
  --muted: #b9c6d3;
  --card: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top right, #123d63, var(--navy) 45%, #020914);
  color: var(--white);
}
.countdown-section {
    display: flex;
    justify-content: left;
    align-items: left;
    gap: 30px;
    flex-wrap: nowrap;
    margin: 40px auto;
    max-width: 1100px;
}

.countdown-card {
    background: rgba(255,255,255,0.08);
    border: 2px solid #d4af37;
    border-radius: 24px;
    padding: 30px 45px;
    width: 480px;
    min-width: 480px;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow:
        0 12px 35px rgba(0,0,0,0.25),
        0 0 30px rgba(212,175,55,0.15);
    transition: all 0.3s ease;
}

.countdown-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.3),
        0 0 40px rgba(212,175,55,0.3);
}

.countdown-label {
    color: #d4af37;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.countdown-time {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 1px;
}
.signup-intro-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 24px;
    padding: 35px;
    margin-bottom: 40px;
    text-align: center;
}

.intro-text {
    max-width: 750px;
    margin: 20px auto;
    font-size: 18px;
    line-height: 1.7;
}

.steps-box {
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 25px;
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
}

.steps-box h3 {
    margin-bottom: 20px;
    color: #d4af37;
}

.steps-box ol {
    padding-left: 25px;
}

.steps-box li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.create-account-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 18px 35px;
    background: #d4af37;
    color: #041b34;
    font-size: 18px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.create-account-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212,175,55,0.35);
}

.fine-print {
    margin-top: 25px;
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .countdown-card {
        min-width: 100%;
        padding: 25px;
    }

    .countdown-time {
        font-size: 30px;
    }
}

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

.hero {
  min-height: 90vh;
  padding: 28px 6%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  border: 3px solid var(--gold);
  color: var(--gold-light);
  border-radius: 18px;
  padding: 12px 28px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 8px;
  box-shadow: 0 0 22px rgba(212, 169, 40, 0.22);
}

.nav-btn,
.btn {
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  display: inline-block;
}

.nav-btn,
.btn.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #081624;
}

.hero-content {
  max-width: 900px;
  padding-bottom: 80px;
}

.eyebrow {
  color: var(--gold-light);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

h1 {
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.95;
  margin: 18px 0;
  text-transform: uppercase;
  letter-spacing: 3px;
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin: 8px 0 12px;
}

h3 {
  font-size: 28px;
  margin-top: 0;
}

.hero-text,
.section-heading p,
.signup-card p,
.ratio-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.section {
  padding: 70px 6%;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 28px;
}

.leaderboard-card,
.ratio-card,
.signup-card,
.video-frame,
.calendar-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.2);
}

.leaderboard-card {
  padding: 24px;
}

.leaderboard-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: var(--muted);
}
.live-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 25px;
    margin-top: 40px;
}

.live-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-top: 5px solid #d4a928;
    transition: .3s;
}

.live-card:hover {
    transform: translateY(-6px);
}

.live-rank {
    font-size: 36px;
    font-weight: 900;
    color: #d4a928;
}

.live-name {
    font-size: 22px;
    font-weight: 800;
    margin: 10px 0;
}

.live-equity {
    font-size: 28px;
    font-weight: 900;
    color: #071d33;
}

.live-profit {
    color: #16a34a;
    font-weight: 700;
    margin-top: 10px;
}

.live-update {
    margin-top: 20px;
    color: #64748b;
    font-size: 13px;
}

.badge {
  background: rgba(212, 169, 40, 0.18);
  border: 1px solid rgba(212, 169, 40, 0.45);
  color: var(--gold-light);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--gold-light);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-active {
  color: #8dffb3;
  font-weight: 800;
}

.status-review {
  color: #ffd36e;
  font-weight: 800;
}



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

.calendar-card {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.calendar-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(var(--gold-light), var(--gold));
}

.calendar-card h3 {
  margin: 0 0 10px;
}

.calendar-card p {
  color: var(--muted);
  line-height: 1.5;
}

.date-pill {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--gold-light);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.rules-list {
  display: grid;
  gap: 14px;
}

.rule {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.rule strong {
  color: var(--gold-light);
  margin-right: 8px;
}

.ratio-card {
  padding: 26px;
}

.big {
  font-size: 34px !important;
  color: var(--gold-light) !important;
  font-weight: 900;
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.signup-card {
  padding: 34px;
}

form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

input,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 16px;
}

select option {
  color: #111;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-message {
  color: var(--gold-light);
  font-weight: 800;
}

footer {
  padding: 28px 6%;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .calendar-grid,
  .split,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 70px;
  }

  .logo {
    font-size: 24px;
    letter-spacing: 5px;
  }

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

.resource-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,169,40,0.35);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.resource-card img,
.resource-card video {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #000;
}

.resource-content {
  padding: 24px;
}

.resource-content h3 {
  margin: 18px 0 10px;
  color: #fff;
}

.resource-content p,
.resource-content small {
  color: #b9c6d3;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
}  

.resource-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
}

.modal-content-image {
    max-width: 95%;
    max-height: 90vh;
    border-radius: 20px;
}

.modal-content-video {
    max-width: 95%;
    max-height: 90vh;
    border-radius: 20px;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    font-weight: bold;
}

.resource-card img,
.resource-card video {
    cursor: pointer;
}

}
