:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-dark: #8b6914;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --white: #f5f0e8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  background: var(--black);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  overflow-x: hidden;
}

/* ── PARTICLES ── */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatUp var(--dur, 6s) var(--delay, 0s) infinite ease-in;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    transform: translateY(-10vh) scale(1.5);
    opacity: 0;
  }
}

/* ── SCAN LINES ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
}

/* ── AMBIENT GLOW ── */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow-orb.top {
  width: 600px;
  height: 600px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.18) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite alternate;
}

.glow-orb.bottom {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 6s ease-in-out infinite alternate-reverse;
}

@keyframes pulse {
  from {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) scale(1.15);
  }
}

/* ── LAYOUT ── */
.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 0;
}

/* ── GOLD DIVIDER ── */
.divider {
  width: 100%;
  max-width: 500px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px 0;
  opacity: 0.7;
}

/* ── LOGO ── */
.logo-wrap {
  position: relative;
  animation: dropIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-60px) scale(0.85);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.logo-wrap img {
  width: clamp(160px, 28vw, 260px);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.5))
    drop-shadow(0 0 80px rgba(201, 168, 76, 0.2));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from {
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.4))
      drop-shadow(0 0 60px rgba(201, 168, 76, 0.15));
  }

  to {
    filter: drop-shadow(0 0 45px rgba(201, 168, 76, 0.8))
      drop-shadow(0 0 100px rgba(201, 168, 76, 0.35));
  }
}

/* ── HEADLINE ── */
.headline-block {
  text-align: center;
  animation: fadeUp 1s 0.4s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.club-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 10vw, 110px);
  letter-spacing: 0.06em;
  line-height: 0.9;
  background: linear-gradient(
    180deg,
    var(--gold-light) 0%,
    var(--gold) 50%,
    var(--gold-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
}

.club-name::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--gold-light) 0%,
    var(--gold) 50%,
    var(--gold-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(12px);
  opacity: 0.4;
  z-index: -1;
}

.club-sub {
  font-family: 'Cinzel', serif;
  font-size: clamp(12px, 2.2vw, 16px);
  letter-spacing: 0.35em;
  color: var(--gold);
  opacity: 0.9;
  margin-top: 6px;
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 4px;
  padding: 8px 20px;
  background: rgba(201, 168, 76, 0.07);
  backdrop-filter: blur(6px);
  animation: fadeUp 1s 0.7s both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px var(--gold);
  }

  50% {
    opacity: 0.2;
    box-shadow: none;
  }
}

.badge span {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── MESSAGE ── */
.msg-block {
  text-align: center;
  max-width: 560px;
  animation: fadeUp 1s 0.9s both;
}

.msg-block p {
  font-size: clamp(14px, 2.2vw, 17px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.75);
  letter-spacing: 0.03em;
}

.msg-block p strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ── PROGRESS BAR ── */
.progress-wrap {
  width: 100%;
  max-width: 420px;
  animation: fadeUp 1s 1.1s both;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.progress-label span {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  opacity: 0.8;
  text-transform: uppercase;
}

.progress-track {
  width: 100%;
  height: 3px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  animation: fillBar 3s 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  box-shadow: 0 0 12px var(--gold);
}

@keyframes fillBar {
  to {
    width: 72%;
  }
}

.progress-track::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: shimmer 2s 2s infinite;
}

@keyframes shimmer {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

/* ── FEATURES ROW ── */
.features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s 1.3s both;
}

.feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100px;
  text-align: center;
  padding: 16px 12px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.04);
  transition: all 0.3s ease;
  cursor: default;
}

.feat:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.15);
}

.feat-icon {
  font-size: 28px;
  color: var(--gold);
  opacity: 0.85;
  line-height: 1;
}

.feat-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.8;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ── FOOTER ── */
.footer {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(201, 168, 76, 0.4);
  text-align: center;
  animation: fadeUp 1s 1.5s both;
}

/* ── CORNER DECORATIONS ── */
.corner {
  position: fixed;
  width: 60px;
  height: 60px;
  pointer-events: none;
  z-index: 2;
}

.corner::before,
.corner::after {
  content: '';
  position: absolute;
  background: var(--gold);
  opacity: 0.4;
}

.corner::before {
  width: 2px;
  height: 100%;
}

.corner::after {
  width: 100%;
  height: 2px;
}

.corner.tl {
  top: 20px;
  left: 20px;
}

.corner.tr {
  top: 20px;
  right: 20px;
  transform: scaleX(-1);
}

.corner.bl {
  bottom: 20px;
  left: 20px;
  transform: scaleY(-1);
}

.corner.br {
  bottom: 20px;
  right: 20px;
  transform: scale(-1);
}

/* ── BALL BOUNCE ── */
.ball-anim {
  position: fixed;
  bottom: 10px;
  left: -40px;
  font-size: 32px;
  color: var(--gold);
  animation: ballRoll 12s linear infinite;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 4px 10px rgba(201, 168, 76, 0.5));
}

@keyframes ballRoll {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  45% {
    transform: translateX(110vw) translateY(-20px) rotate(720deg);
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    transform: translateX(110vw) translateY(0) rotate(720deg);
    opacity: 0;
  }
}
