/* =========================================
   RESET & BASE
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary: #69d7e8;
  --primary-dark: #37bfd6;
  --secondary: #f5cf64;
  --secondary-dark: #d6b24d;
  --dark: #05060a;
  --dark-2: #0d1017;
  --dark-3: #121722;
  --card: #10131b;
  --text: #ffffff;
  --gray: #b8bfd0;
  --dim: #7883a0;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(105, 215, 232, 0.25);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.6);
  --radius: 28px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --radius-circle: 9999px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  background:
    radial-gradient(circle at top right, rgba(105, 215, 232, 0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(245, 207, 100, 0.05), transparent 30%),
    var(--dark);
}

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

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

button,
input,
select {
  font-family: 'Inter', sans-serif;
}

button {
  cursor: pointer;
  border: none;
}

.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

section {
  padding: 100px 0;
  position: relative;
}

/* =========================================
   SCROLLBAR
========================================= */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #090b12;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: var(--radius-circle);
  transition: all 0.3s;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-dark), var(--secondary-dark));
}

/* =========================================
   ANIMATIONS
========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(105, 215, 232, 0.2); }
  50% { box-shadow: 0 0 40px rgba(105, 215, 232, 0.4); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes announcementScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =========================================
   GLASSMORPHISM UTILITY
========================================= */
.glass {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
}

.glass-hover:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-hover);
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-bounce);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  box-shadow: 0 8px 24px -6px rgba(105, 215, 232, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px -8px rgba(105, 215, 232, 0.4);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  border-color: var(--border-hover);
}

.btn-wa {
  background: #25D366;
  color: #fff;
}

.btn-wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px -8px rgba(37, 211, 102, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px -8px rgba(105, 215, 232, 0.3);
}

/* =========================================
   SECTION TITLE
========================================= */
.section-title {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out;
}

.section-title h5 {
  color: var(--primary);
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
  padding: 4px 16px;
  border-radius: var(--radius-circle);
  background: rgba(105, 215, 232, 0.08);
  border: 1px solid rgba(105, 215, 232, 0.1);
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 8px;
}

.section-title h2 span {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  animation: slideDown 0.6s ease-out;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
}

.logo-text h1 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.65rem;
  color: var(--gray);
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
  border-radius: var(--radius-circle);
}

.menu a:hover {
  color: var(--text);
}

.menu a:hover::after {
  width: 100%;
}

.menu a.active {
  color: var(--text);
}

.menu a.active::after {
  width: 100%;
}

.desktop-btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.hamburger {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
}

/* =========================================
   MOBILE SIDEBAR
========================================= */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: #0d1119;
  z-index: 2000;
  padding: 28px 24px;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-sidebar.active {
  right: 0;
}

.sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.sidebar-top h3 {
  color: var(--secondary);
  font-size: 1.2rem;
  font-weight: 700;
}

.sidebar-top button {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-top button:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(90deg);
}

.mobile-sidebar a {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gray);
  margin-bottom: 8px;
  font-weight: 500;
  transition: all 0.3s;
}

.mobile-sidebar a:hover {
  background: var(--primary);
  color: #000;
  transform: translateX(4px);
}

.mobile-sidebar .btn {
  text-align: center;
  margin-top: 8px;
  width: 100%;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =========================================
   ANNOUNCEMENT BAR
========================================= */
.announcement-bar {
  margin-top: 80px;
  padding: 12px 0;
  background: linear-gradient(90deg, rgba(105, 215, 232, 0.12), rgba(245, 207, 100, 0.12));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  overflow: hidden;
  position: relative;
}

.announcement-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(105, 215, 232, 0.05) 50%, 
    transparent 100%
  );
  animation: shimmer 3s infinite;
  background-size: 200% 100%;
}

.announcement-text {
  width: 100%;
  padding: 0 14px;
  position: relative;
  z-index: 1;
}

.announcement-marquee {
  width: 100%;
  overflow: hidden;
}

.announcement-track {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  white-space: nowrap;
  animation: announcementScroll 22s linear infinite;
}

.announcement-track:hover {
  animation-play-state: paused;
}

.announcement-emoji {
  color: var(--secondary);
}

.announcement-dot {
  color: var(--primary);
}

.announcement-spacer {
  flex: 0 0 30px;
}

/* =========================================
   HERO
========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(105, 215, 232, 0.08);
  filter: blur(120px);
  top: -200px;
  right: -150px;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(245, 207, 100, 0.06);
  filter: blur(120px);
  bottom: -200px;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  animation: fadeInLeft 0.8s ease-out;
}

.hero-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-circle);
  background: rgba(105, 215, 232, 0.08);
  border: 1px solid rgba(105, 215, 232, 0.12);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  animation: pulseGlow 2s infinite;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-text h1 span {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  margin-top: 16px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 520px;
  font-size: 1.05rem;
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-alert {
  margin-top: 24px;
  color: #ff6b6b;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.15);
  display: inline-block;
}

/* =========================================
   HERO CARD
========================================= */
.hero-card {
  padding: 36px 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-bounce);
  animation: fadeInRight 0.8s ease-out;
}

.hero-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(105, 215, 232, 0.06);
  border-radius: 50%;
  top: -100px;
  right: -80px;
  filter: blur(60px);
  pointer-events: none;
  animation: pulseGlow 4s infinite;
}

.ticket-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-circle);
  background: rgba(105, 215, 232, 0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  animation: pulseGlow 2s infinite;
}

.hero-logo {
  width: 100px;
  margin: 0 auto 20px;
  animation: float 6s ease-in-out infinite;
}

.hero-card h3 {
  text-align: center;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
}

.hero-card h3 span {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  text-align: center;
  margin: 10px 0 20px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ticket-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ticket-item {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease;
}

.ticket-item:hover {
  transform: translateX(6px);
}

.ticket-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  color: var(--primary);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.ticket-item:hover .ticket-icon {
  background: rgba(105, 215, 232, 0.1);
  transform: scale(1.05);
}

.ticket-item h4 {
  font-size: 0.7rem;
  color: var(--dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ticket-item p {
  font-size: 0.9rem;
  color: var(--text);
}

/* =========================================
   PROGRESS
========================================= */
.progress-box {
  margin-top: 20px;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 6px;
}

.progress-top i {
  color: var(--primary);
  margin-right: 4px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

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

.progress {
  width: 0%;
  height: 100%;
  border-radius: var(--radius-circle);
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
}

.slot-status {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
}

.slot-status.live {
  color: #ffb347;
}

.slot-status.full {
  color: #ff6b6b;
}

/* =========================================
   STATS
========================================= */
.stats {
  margin-top: -50px;
  position: relative;
  z-index: 5;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box {
  padding: 28px 20px;
  border-radius: var(--radius);
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all var(--transition-bounce);
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.stat-box:nth-child(1) { animation-delay: 0.1s; }
.stat-box:nth-child(2) { animation-delay: 0.2s; }
.stat-box:nth-child(3) { animation-delay: 0.3s; }
.stat-box:nth-child(4) { animation-delay: 0.4s; }

.stat-box:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.03);
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 8px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.stat-box:hover .stat-icon {
  transform: scale(1.1) rotate(-5deg);
}

.stat-number {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* =========================================
   COUNTDOWN
========================================= */
.countdown-section {
  background: radial-gradient(circle at 30% 30%, rgba(105, 215, 232, 0.03) 0%, transparent 70%);
}

.countdown-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.time-box {
  padding: 32px 20px;
  border-radius: var(--radius);
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.time-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(105, 215, 232, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.time-box:hover::before {
  opacity: 1;
}

.time-box:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.time-number {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
  font-family: 'Orbitron', monospace;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.time-label {
  color: var(--gray);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* =========================================
   PRIZE
========================================= */
.prize-section {
  background: rgba(255, 255, 255, 0.01);
}

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

.prize-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all var(--transition-bounce);
  position: relative;
}

.prize-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.02));
  opacity: 0;
  transition: opacity 0.3s;
}

.prize-card:hover::before {
  opacity: 1;
}

.prize-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
}

.prize-card.gold:hover {
  border-color: #ffd700;
  box-shadow: 0 30px 80px rgba(255, 215, 0, 0.1);
}

.prize-card.silver:hover {
  border-color: #c0c0c0;
  box-shadow: 0 30px 80px rgba(192, 192, 192, 0.1);
}

.prize-card.bronze:hover {
  border-color: #cd7f32;
  box-shadow: 0 30px 80px rgba(205, 127, 50, 0.1);
}

.prize-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.prize-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card), transparent);
}

.prize-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prize-card:hover .prize-image img {
  transform: scale(1.08);
}

.prize-content {
  padding: 28px 24px;
  position: relative;
}

.prize-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-circle);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.prize-badge.champion {
  background: rgba(255, 215, 0, 0.12);
  color: #ffd700;
}

.prize-badge.mvp {
  background: rgba(105, 215, 232, 0.12);
  color: var(--primary);
}

.prize-badge.runner-up {
  background: rgba(205, 127, 50, 0.12);
  color: #cd7f32;
}

.prize-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

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

/* =========================================
   GALLERY
========================================= */
.gallery-section {
  background: rgba(255, 255, 255, 0.01);
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  transition: all var(--transition-bounce);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
  transform: scale(1.02);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  transition: all 0.3s ease;
  transform: scale(0.8);
}

.gallery-item:hover .gallery-overlay span {
  transform: scale(1);
}

/* =========================================
   REGISTER
========================================= */
.register-section {
  background: rgba(255, 255, 255, 0.01);
}

.register-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.register-form {
  padding: 44px 40px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  transition: all var(--transition);
  animation: fadeInUp 0.6s ease-out;
}

.register-form:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
}

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

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 6px;
  transition: color 0.3s;
}

.form-group:focus-within label {
  color: var(--primary);
}

.form-group label i {
  color: var(--primary);
  margin-right: 6px;
  width: 18px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: none;
  outline: none;
  border-radius: var(--radius-xs);
  background: #0b0e15;
  border: 1px solid var(--border);
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(105, 215, 232, 0.1);
  background: #0d1119;
}

.form-group input::placeholder {
  color: var(--dim);
}

.form-group input[type="file"] {
  padding: 14px;
  height: auto;
  cursor: pointer;
}

.form-group input[type="file"]::-webkit-file-upload-button {
  padding: 6px 16px;
  border: none;
  border-radius: var(--radius-xs);
  background: var(--primary);
  color: #000;
  font-weight: 600;
  cursor: pointer;
  margin-right: 12px;
  transition: all 0.3s;
}

.form-group input[type="file"]::-webkit-file-upload-button:hover {
  background: var(--primary-dark);
  transform: scale(1.02);
}

/* =========================================
   PAYMENT BOX
========================================= */
.payment-box {
  padding: 28px 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.payment-box:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.03);
}

.payment-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 14px;
}

.payment-box h3 i {
  margin-right: 10px;
  color: var(--secondary);
}

.payment-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.payment-info p {
  color: var(--gray);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.payment-info p:last-child {
  border-bottom: none;
}

.payment-info span {
  color: #fff;
  font-weight: 600;
}

/* =========================================
   CHECKBOX
========================================= */
.checkbox-wrapper {
  padding: 28px 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  transition: all 0.3s;
}

.checkbox-wrapper:hover {
  border-color: var(--border-hover);
}

.checkbox-wrapper h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: all 0.3s;
  padding: 6px 8px;
  border-radius: var(--radius-xs);
}

.checkbox-item:last-child {
  margin-bottom: 0;
}

.checkbox-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.checkbox-item input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--primary);
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-item input:checked + span {
  color: var(--text);
}

.checkbox-item span {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.7;
  transition: color 0.3s;
}

/* =========================================
   PREVIEW
========================================= */
.preview-box {
  display: none;
  margin-bottom: 20px;
  animation: fadeInUp 0.3s ease-out;
}

.preview-box img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* =========================================
   SUBMIT
========================================= */
.submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  transition: all var(--transition-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.submit-btn:hover:not(:disabled)::after {
  opacity: 1;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(105, 215, 232, 0.35);
}

.submit-btn:active:not(:disabled) {
  transform: translateY(0) scale(0.98);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* =========================================
   RULES
========================================= */
.rules-section {
  background: rgba(255, 255, 255, 0.01);
}

.rules-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 44px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.rules-box:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
}

.rule-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.rule-item:last-child {
  border-bottom: none;
}

.rule-item:hover {
  padding-left: 8px;
}

.rule-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--radius-xs);
  background: rgba(105, 215, 232, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.rule-item:hover .rule-icon {
  background: rgba(105, 215, 232, 0.15);
  transform: scale(1.05);
}

.rule-item p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-top: 4px;
}

/* =========================================
   CONTACT
========================================= */
.contact-section {
  background: rgba(255, 255, 255, 0.01);
}

.contact-box {
  position: relative;
  overflow: hidden;
  padding: 70px 50px;
  border-radius: var(--radius);
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.contact-box:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
}

.contact-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(105, 215, 232, 0.06);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  filter: blur(100px);
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.contact-box h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.contact-box h2 span {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-box p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* =========================================
   SUCCESS MODAL
========================================= */
.success-alert {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.success-alert.active {
  opacity: 1;
  visibility: visible;
}

.success-card {
  width: 92%;
  max-width: 400px;
  padding: 40px 36px;
  text-align: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0b1020, #111a34);
  border: 1px solid rgba(105, 215, 232, 0.2);
  box-shadow: 0 0 60px rgba(105, 215, 232, 0.05);
  transform: translateY(40px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-alert.active .success-card {
  transform: translateY(0) scale(1);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--primary);
  background: rgba(105, 215, 232, 0.06);
  border: 2px solid rgba(105, 215, 232, 0.15);
  animation: pulseGlow 2s infinite;
}

.success-card h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}

.success-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.success-card button {
  padding: 12px 32px;
  border: none;
  border-radius: var(--radius-xs);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-bounce);
}

.success-card button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(105, 215, 232, 0.25);
}

/* =========================================
   FOOTER
========================================= */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: #040509;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
}

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

.footer-copy {
  color: var(--dim);
  font-size: 0.8rem;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-text {
    text-align: center;
  }
  .hero-text p {
    margin: 16px auto 0;
  }
  .hero-buttons {
    justify-content: center;
  }
  .prize-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu,
  .desktop-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-wrapper {
    height: 68px;
  }
  .announcement-bar {
    margin-top: 68px;
  }
  .hero {
    min-height: auto;
    padding-top: 40px;
  }
  .hero-wrapper {
    gap: 32px;
  }
  .hero-text h1 {
    font-size: 2.4rem;
  }
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    margin-top: 0;
  }
  .countdown-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .prize-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .register-form {
    padding: 28px 20px;
  }
  .contact-box {
    padding: 44px 24px;
  }
  .contact-box h2 {
    font-size: 2rem;
  }
  .footer-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .rules-box {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 70px 0 50px;
  }
  .hero-card {
    padding: 24px 18px;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .countdown-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .time-box {
    padding: 20px 12px;
  }
  .time-number {
    font-size: 2.2rem;
  }
  .price {
    font-size: 2.8rem;
  }
  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-box {
    padding: 34px 18px;
  }
  .checkbox-wrapper {
    padding: 20px 16px;
  }
  .payment-box {
    padding: 20px 16px;
  }
  .success-card {
    padding: 28px 20px;
  }
}

/* =========================================
   TUTORIAL / PANDUAN REGISTRASI
========================================= */
.tutorial-section {
  background: rgba(255, 255, 255, 0.01);
}

.tutorial-subtitle {
  margin-top: 14px;
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.tutorial-list {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.tutorial-step {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.tutorial-step:nth-child(1) { animation-delay: 0.1s; }
.tutorial-step:nth-child(2) { animation-delay: 0.2s; }
.tutorial-step:nth-child(3) { animation-delay: 0.3s; }
.tutorial-step:nth-child(4) { animation-delay: 0.4s; }
.tutorial-step:nth-child(5) { animation-delay: 0.5s; }
.tutorial-step:nth-child(6) { animation-delay: 0.6s; }
.tutorial-step:nth-child(7) { animation-delay: 0.7s; }
.tutorial-step:nth-child(8) { animation-delay: 0.8s; }
.tutorial-step:nth-child(9) { animation-delay: 0.9s; }

.tutorial-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tutorial-step.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.tutorial-step.reverse .step-media {
  order: 2;
}

.tutorial-step.reverse .step-body {
  order: 1;
}

.step-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  transition: all var(--transition-bounce);
}

.step-media:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.step-media img {
  width: 100%;
  display: block;
  cursor: zoom-in;
  transition: transform 0.6s ease;
}

.step-media:hover img {
  transform: scale(1.02);
}

.step-number {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background: rgba(5, 6, 10, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(105, 215, 232, 0.25);
  color: var(--primary);
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.step-media:hover .step-number {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.step-media--grid {
  padding: 44px 10px 10px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mini-grid img {
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.mini-grid img:hover {
  border-color: var(--border-hover);
  transform: scale(1.02);
}

.step-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-body h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--primary);
  border-radius: var(--radius-circle);
  margin-right: 12px;
  vertical-align: middle;
}

.step-body p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

.step-body strong {
  color: var(--secondary);
  font-weight: 700;
}

/* =========================================
   LIGHTBOX
========================================= */
.tutorial-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.tutorial-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.tutorial-lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tutorial-lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(90deg);
  border-color: var(--border-hover);
}

/* =========================================
   TUTORIAL RESPONSIVE
========================================= */
@media (max-width: 900px) {
  .tutorial-step,
  .tutorial-step.reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .tutorial-step.reverse .step-media,
  .tutorial-step.reverse .step-body {
    order: initial;
  }
  .tutorial-list {
    gap: 40px;
  }
  .tutorial-step {
    padding-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .mini-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .step-media--grid {
    padding: 40px 8px 8px;
  }
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
    top: 10px;
    left: 10px;
  }
  .tutorial-lightbox {
    padding: 16px;
  }
  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .step-body h3 {
    font-size: 1.1rem;
  }
  .step-body h3::before {
    height: 18px;
  }
}