/* ============================================================
   PDAM HUT - Festival Kreasi Karyawan 2025
   CSS Stylesheet — Premium Corporate Theme
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --blue-950: #0c1a3a;
  --blue-900: #0a2351;
  --blue-800: #0d3a6e;
  --blue-700: #0f4c8a;
  --blue-600: #1565c0;
  --blue-500: #1976d2;
  --blue-400: #2196f3;
  --blue-300: #64b5f6;
  --blue-200: #bbdefb;
  --blue-100: #e3f2fd;

  --cyan-600: #0097a7;
  --cyan-500: #00bcd4;
  --cyan-400: #26c6da;
  --cyan-300: #80deea;
  --cyan-200: #b2ebf2;

  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;
  --purple-400: #a78bfa;
  --purple-300: #c4b5fd;

  --primary:   #0369a1;
  --primary-dark: #0c4a6e;
  --accent:    #06b6d4;
  --accent-dark: #0891b2;

  --white:     #ffffff;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-300:  #cbd5e1;
  --gray-400:  #94a3b8;
  --gray-500:  #64748b;
  --gray-600:  #475569;
  --gray-700:  #334155;
  --gray-800:  #1e293b;
  --gray-900:  #0f172a;

  --text-primary:   #0f172a;
  --text-secondary: #334155;
  --text-muted:     #64748b;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:  0 10px 32px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.08);
  --shadow-blue: 0 8px 32px rgba(3,105,161,0.25);
  --shadow-cyan: 0 8px 32px rgba(6,182,212,0.30);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  --font: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: clamp(14px, 1vw + 12px, 18px); }

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ── Container ── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Shared ── */
section { padding: 96px 0; }
.form-section, .upload-section { overflow-x: hidden; max-width: 100vw; }
#registrasiForm .form-group,
#uploadForm .form-group {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
#registrasiForm .form-group.full,
#uploadForm .form-group.full {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(3,105,161,0.10), rgba(6,182,212,0.10));
  color: var(--primary);
  border: 1px solid rgba(3,105,161,0.20);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-sub {
  font-size: clamp(0.875rem, 1.2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(3,105,161,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border: 2px solid rgba(255,255,255,0.45);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: white;
  color: var(--primary);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar.scrolled .logo-text { color: var(--gray-900); }
.navbar.scrolled .logo-text span { color: var(--primary); }
.navbar.scrolled .nav-links a { color: var(--gray-700); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); }
.navbar.scrolled .hamburger span { background: var(--gray-800); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon { display: flex; }

.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 8px;
}

.logo-text {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 700;
  color: white;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
  letter-spacing: 0.02em;
}
.logo-text span {
  color: rgba(255,255,255,0.65);
  display: block;
  font-size: clamp(0.6rem, 0.8vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.navbar:hover .logo-img {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 12px rgba(3,105,161,0.35));
}

.navbar.scrolled .logo-img {
  filter: drop-shadow(0 2px 8px rgba(3,105,161,0.2));
}
.navbar.scrolled .logo-text {
  color: var(--gray-900);
  letter-spacing: 0.01em;
}
.navbar.scrolled .logo-text span {
  color: var(--primary);
}
.navbar.scrolled:hover .logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 14px rgba(3,105,161,0.3));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.12); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, #0369a1, #06b6d4);
  color: white;
  font-weight: 600;
  margin-left: 8px;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 0.8rem;
  border: none;
  box-shadow: 0 2px 12px rgba(3,105,161,0.25);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-links .nav-cta:hover {
  background: linear-gradient(135deg, #075985, #0891b2);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(3,105,161,0.35);
}
.nav-links .nav-cta:active {
  transform: translateY(0);
}
.nav-links .nav-cta.logged {
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 2px 12px rgba(5,150,105,0.25);
}
.nav-links .nav-cta.logged:hover {
  background: linear-gradient(135deg, #047857, #059669);
  box-shadow: 0 4px 20px rgba(5,150,105,0.35);
}
.nav-links .nav-upload {
  background: var(--primary);
  color: white;
  font-weight: 600;
  margin-left: 4px;
}
.nav-links .nav-upload:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--blue-950) 0%, var(--blue-900) 35%, var(--primary) 65%, var(--accent-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

/* Animated waves */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 200px;
  border-radius: 50%;
  opacity: 0.08;
}
.wave-1 { background: rgba(255,255,255,0.6); animation: waveAnim 8s linear infinite; height: 180px; }
.wave-2 { background: rgba(6,182,212,0.5); animation: waveAnim 11s linear infinite reverse; height: 160px; bottom: -20px; }
.wave-3 { background: rgba(14,165,233,0.4); animation: waveAnim 14s linear infinite; height: 140px; bottom: -40px; }

@keyframes waveAnim {
  0%   { transform: translateX(0) scaleY(1); }
  50%  { transform: translateX(-12%) scaleY(0.88); }
  100% { transform: translateX(0) scaleY(1); }
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
}

/* Decorative circles */
.hero-deco { position: absolute; inset: 0; pointer-events: none; }
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  animation: rotateSlow 20s linear infinite;
}
.deco-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.deco-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; animation-duration: 28s; animation-direction: reverse; }
.deco-3 { width: 250px; height: 250px; top: 50%; left: 45%; animation-duration: 16s; border-color: rgba(6,182,212,0.15); }

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  animation: heroIn 1s ease both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: none;
}

.hero-anni-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}

.anni-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px;
  padding: 10px 28px;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.anni-star {
  color: #fcd34d;
  display: flex;
  align-items: center;
}
.anni-badge svg { fill: currentColor; }

.anni-display {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

.anni-numeral {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  text-shadow: 0 4px 30px rgba(255,255,255,0.2);
  letter-spacing: -0.03em;
}

.anni-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.anni-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fcd34d;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1;
}

.anni-year {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
}

.anni-company {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-year {
  display: none;
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title .title-gold {
  display: block;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.85rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.gradient-text {
  color: #fcd34d;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.75;
}

/* ── Anni Image Display ── */
.anni-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.anni-image-wrap-main {
  flex-direction: column;
}
.anni-image {
  max-width: 100%;
  height: auto;
  display: block;
}
.anni-image-program {
  max-height: 280px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
}
.anni-image-badge-overlay {
  position: absolute;
  top: -90px;
  right: -20px;
  height: 110px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
@media (max-width: 768px) {
  .anni-image-program { max-height: 180px; }
  .anni-image-badge-overlay { height: 80px; top: -55px; right: -14px; }
}
@media (max-width: 480px) {
  .anni-image-program { max-height: 120px; }
  .anni-image-badge-overlay { height: 60px; top: -40px; right: -10px; }
}

.year-badge {
  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(251,191,36,0.35));
  border: 3px solid rgba(251,191,36,0.6);
  border-radius: 20px;
  padding: 12px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(251,191,36,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}
.year-big {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: #fef3c7;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.year-label {
  font-size: 0.75rem;
  color: #fcd34d;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-top: 4px;
}

.year-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: center;
}
.year-big {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.year-label {
  font-size: 0.7rem;
  color: var(--cyan-300);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.gradient-text {
  color: #fcd34d;
}

.title-gold {
  color: #fcd34d;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  padding: 24px 48px;
  backdrop-filter: blur(10px);
}

.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.18);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(251,191,36,0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.8); }
}

.hero-celebrate {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

.celebrate-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  opacity: 0.08;
  border-radius: 50%;
  border: 2px solid #fcd34d;
  animation: burstPulse 4s ease infinite;
}

.celebrate-burst:nth-child(2) {
  width: 400px;
  height: 400px;
  animation-delay: 0.5s;
  border-color: rgba(251,191,36,0.5);
}

.celebrate-burst:nth-child(3) {
  width: 200px;
  height: 200px;
  animation-delay: 1s;
  border-color: rgba(251,191,36,0.3);
}

@keyframes burstPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.08; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.15; }
}

/* ── Event Info ── */
.event-info { background: var(--gray-50); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.info-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.glass-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--color) 12%, transparent);
  color: var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 22px; height: 22px; stroke: currentColor; }

.info-body h3 { font-size: 0.825rem; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.info-main { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.info-sub { font-size: 0.825rem; color: var(--text-muted); }

/* Timeline */
.info-layout-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.timeline-section { max-width: 680px; margin: 0; }
.timeline-title { text-align: center; }

@media (max-width: 860px) {
  .info-layout-side { grid-template-columns: 1fr; gap: 32px; }
}
.timeline-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 36px;
  text-align: center;
  color: var(--gray-800);
}

.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid var(--gray-300);
  background: white;
  transition: var(--transition);
}
.timeline-item.active .timeline-dot {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(3,105,161,0.18);
}

.timeline-content { padding-left: 8px; }
.tl-date { font-size: 0.775rem; font-weight: 600; color: var(--accent-dark); text-transform: uppercase; letter-spacing: 0.06em; }
.timeline-content h4 { font-size: 1rem; font-weight: 600; color: var(--gray-900); margin: 4px 0 6px; }
.timeline-content p { font-size: 0.875rem; color: var(--text-muted); }

/* ── Ketentuan Umum ── */
.ketentuan-section {
}
.ketentuan-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}
.ketentuan-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 10px auto 0;
}
.ketentuan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ketentuan-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  transition: var(--transition);
}
.ketentuan-item:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(3,105,161,0.08);
}
.ketentuan-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3,105,161,0.08);
  border-radius: 8px;
  color: var(--primary);
}
.ketentuan-item span {
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .ketentuan-grid { grid-template-columns: 1fr; }
  .ketentuan-item { padding: 12px 14px; }
  .ketentuan-item span { font-size: 0.8rem; }
}

/* ── Countdown ── */
.countdown-section {
  position: relative;
  padding: 72px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent-dark) 100%);
  overflow: hidden;
}

.countdown-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.wave-light {
  opacity: 0.06;
  background: white !important;
}

.countdown-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}

.countdown-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.cd-box {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  min-width: 100px;
  backdrop-filter: blur(10px);
}
.cd-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: transform 0.1s;
}
.cd-num.bump { transform: scale(1.15); }
.cd-unit { font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-top: 6px; display: block; }
.cd-sep { font-size: 2.5rem; font-weight: 800; color: rgba(255,255,255,0.4); }

/* ── Lomba Section ── */
.lomba-section { background: white; }

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

.lomba-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  background: white;
}
.lomba-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.lomba-header {
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.lh-blue { background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--blue-400)); }
.lh-cyan { background: linear-gradient(135deg, var(--accent-dark), var(--accent), var(--cyan-300)); }
.lh-purple { background: linear-gradient(135deg, #5b21b6, var(--purple-500), var(--purple-400)); }

.lomba-icon-wrap {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.lomba-badge-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.10);
  line-height: 1;
  pointer-events: none;
}

.lomba-body { padding: 28px 32px 32px; }
.lomba-body h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}
.lomba-desc { font-size: clamp(0.8rem, 1vw, 0.9rem); color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }

.lomba-details { margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.75rem, 0.9vw, 0.85rem);
  color: var(--gray-700);
}
.detail-row svg { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; stroke: currentColor; }

.lomba-syarat {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 24px;
}
.lomba-syarat h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.lomba-syarat h4 svg { width: 14px; height: 14px; stroke: currentColor; }
.lomba-syarat ul { display: flex; flex-direction: column; gap: 6px; }
.lomba-syarat li {
  font-size: 0.845rem;
  color: var(--gray-700);
  padding-left: 16px;
  position: relative;
}
.lomba-syarat li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.btn-lomba {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: linear-gradient(135deg, var(--primary), var(--blue-400));
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
}
.btn-lomba:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(3,105,161,0.35); }
.btn-cyan { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); box-shadow: var(--shadow-cyan); }
.btn-cyan:hover { box-shadow: 0 8px 24px rgba(6,182,212,0.40); }
.btn-purple { background: linear-gradient(135deg, #5b21b6, var(--purple-500)); box-shadow: 0 8px 32px rgba(124,58,237,0.30); }
.btn-purple:hover { box-shadow: 0 8px 24px rgba(124,58,237,0.40); }
.btn-lomba svg { width: 16px; height: 16px; stroke: currentColor; }

/* ── Hadiah Section ── */
.hadiah-section { background: var(--gray-50); }

.hadiah-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  padding: 6px;
  max-width: 360px;
  margin: 0 auto 48px;
}

.tab-btn {
  flex: 1;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: var(--transition);
}
.tab-btn.active {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.hadiah-content.hidden { display: none; }

.podium-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 20px;
  align-items: end;
  max-width: 860px;
  margin: 0 auto 28px;
}

.podium-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}
.podium-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.podium-card.gold {
  border-color: #f59e0b;
  background: linear-gradient(160deg, #fffbeb, white);
  padding-top: 40px;
}
.podium-card.silver { border-color: var(--gray-300); }
.podium-card.bronze { border-color: #d97706; }

.podium-crown {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.podium-rank {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto 12px;
}
.gold .podium-rank { background: #fef3c7; color: #d97706; }
.silver .podium-rank { background: var(--gray-100); color: var(--gray-500); }
.bronze .podium-rank { background: #fef3c7; color: #92400e; }

.podium-trophy { margin-bottom: 10px; display: flex; justify-content: center; }
.podium-trophy svg { display: block; }
.podium-card h4 { font-size: 0.875rem; font-weight: 700; color: var(--gray-700); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }

.prize-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}
.gold .prize-amount { color: #d97706; }

.podium-card ul { font-size: 0.8rem; color: var(--text-muted); display: flex; flex-direction: column; gap: 5px; }
.podium-card li::before { content: '✓ '; color: var(--accent-dark); font-weight: 700; }

.special-prize {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(3,105,161,0.06), rgba(6,182,212,0.06));
  border: 1px solid rgba(3,105,161,0.15);
  border-radius: var(--radius-full);
  padding: 14px 28px;
  max-width: 460px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.special-prize svg { width: 16px; height: 16px; color: #f59e0b; stroke: currentColor; }

/* ── Gallery ── */
.gallery-section { background: white; }

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 9px 24px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

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

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.hidden { display: none; }

.gallery-img {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.gallery-item:hover .gallery-img { transform: scale(1.05); }

/* Visual patterns for gallery items (in absence of real images) */
.gi-1 { background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 40%, #0891b2 70%, #0284c7 100%); }
.gi-2 { background: linear-gradient(135deg, #075985 0%, #0369a1 50%, #2563eb 100%); }
.gi-3 { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0369a1 100%); }
.gi-4 { background: linear-gradient(135deg, #164e63 0%, #0891b2 50%, #22d3ee 100%); }
.gi-5 { background: linear-gradient(135deg, #0c4a6e 0%, #06b6d4 50%, #67e8f9 100%); }
.gi-6 { background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 50%, #38bdf8 100%); }

.gi-7 { background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 50%, #a78bfa 100%); }
.gi-8 { background: linear-gradient(135deg, #3b0764 0%, #5b21b6 50%, #8b5cf6 100%); }
.gi-9 { background: linear-gradient(135deg, #5b21b6 0%, #8b5cf6 50%, #c4b5fd 100%); }

/* Decorative pattern overlays */
.gi-1::before, .gi-2::before, .gi-3::before,
.gi-4::before, .gi-5::before, .gi-6::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}

/* Gallery icon overlays — SVG silhouette */
.gi-1::after, .gi-2::after, .gi-3::after,
.gi-4::after, .gi-5::after, .gi-6::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 64px;
  height: 64px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.35;
}
.gi-1::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M20 14 L14 22 H24 V44 H40 V22 H50 L44 14 L38 18 C36 16 34 14 32 14 C30 14 28 16 26 18 Z'/%3E%3C/svg%3E");
}
.gi-2::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M16 18 L24 14 V28 H16 Z M48 18 L40 14 V28 H48 Z M24 14 L32 20 L40 14 V44 H36 V34 H28 V44 H24 Z'/%3E%3C/svg%3E");
}
.gi-3::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M18 22 L28 20 L32 14 L36 20 L46 22 L42 44 H22 Z'/%3E%3C/svg%3E");
}
.gi-4::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linejoin='round'%3E%3Cellipse cx='32' cy='30' rx='16' ry='14'/%3E%3Ccircle cx='24' cy='26' r='2.5' fill='rgba(255,255,255,0.5)' stroke='none'/%3E%3Ccircle cx='40' cy='26' r='2.5' fill='rgba(255,255,255,0.5)' stroke='none'/%3E%3Cpath d='M24 34 C28 38 36 38 40 34'/%3E%3C/svg%3E");
}
.gi-5::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M32 12 C20 26 18 34 18 40 C18 48 24 54 32 54 C40 54 46 48 46 40 C46 34 44 26 32 12Z'/%3E%3C/svg%3E");
}
.gi-6::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M8 40 Q20 28 32 40 Q44 52 56 40'/%3E%3Cpath d='M8 46 Q20 34 32 46 Q44 58 56 46' opacity='0.6'/%3E%3C/svg%3E");
}
.gi-7::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Crect x='12' y='16' width='40' height='32' rx='6'/%3E%3Cpath d='M26 24L38 32L26 40V24Z' fill='rgba(255,255,255,0.4)' stroke='none'/%3E%3C/svg%3E");
}
.gi-8::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Ccircle cx='32' cy='32' r='20'/%3E%3Cpath d='M26 26 L38 38 M38 26 L26 38' stroke-width='2.5'/%3E%3C/svg%3E");
}
.gi-9::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M32 12 C24 20 20 24 20 32 C20 40 25.3 48 32 48 C38.7 48 44 40 44 32 C44 24 40 20 32 12Z' fill='rgba(255,255,255,0.15)'/%3E%3Cpath d='M24 36 C28 42 36 42 40 36' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: var(--transition);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-cat {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.gallery-overlay p { color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 500; }

/* ── Form Section ── */
.form-section {
  background: linear-gradient(160deg, var(--gray-50) 0%, white 50%, var(--blue-100) 100%);
}

/* Registration Notice - Petunjuk Pendaftaran */
.registration-notice {
  max-width: 1000px;
  margin: 0 auto 40px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fde68a 100%);
  border-radius: 24px;
  padding: 40px 48px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 8px 32px rgba(251, 191, 36, 0.25), 0 2px 8px rgba(245, 158, 11, 0.15);
  border: 3px solid #fbbf24;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.registration-notice::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.registration-notice::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, -20px) scale(1.05);
  }
}

.registration-notice:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(251, 191, 36, 0.35), 0 4px 16px rgba(245, 158, 11, 0.2);
  border-color: #f59e0b;
}

.rn-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px dashed rgba(146, 64, 14, 0.3);
  position: relative;
  z-index: 1;
}

.rn-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.rn-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  opacity: 0.3;
  z-index: -1;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.registration-notice:hover .rn-icon {
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.rn-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.rn-header h3 {
  font-size: 1.65rem;
  font-weight: 900;
  color: #92400e;
  margin: 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(146, 64, 14, 0.1);
  position: relative;
}

.rn-header h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b 0%, transparent 100%);
  border-radius: 2px;
}

.rn-intro {
  font-size: 1.1rem;
  font-weight: 700;
  color: #78350f;
  margin: 0 0 20px 0;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(120, 53, 15, 0.1);
}

.rn-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.rn-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  border: 2px solid rgba(251, 191, 36, 0.3);
  font-size: 0.95rem;
  color: #78350f;
  line-height: 1.7;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.08);
}

.rn-checklist li:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: #fbbf24;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.15);
}

.rn-checklist li svg {
  width: 24px;
  height: 24px;
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 2px;
  stroke-width: 2.8;
  filter: drop-shadow(0 2px 4px rgba(22, 163, 74, 0.3));
  animation: check-bounce 0.6s ease-out;
}

@keyframes check-bounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.rn-checklist li span {
  flex: 1;
  color: var(--gray-700);
  font-size: 0.95rem;
  word-break: break-word;
}

.rn-checklist li strong {
  color: #92400e;
  font-weight: 700;
}

/* Responsive untuk Registration Notice */
@media (max-width: 968px) {
  .registration-notice {
    padding: 32px 28px;
    margin-bottom: 32px;
  }
  
  .rn-checklist {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .rn-header {
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
  
  .rn-icon {
    width: 56px;
    height: 56px;
  }
  
  .rn-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .rn-header h3 {
    font-size: 1.4rem;
  }
  
  .rn-intro {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .registration-notice {
    padding: 24px 20px;
    border-radius: 20px;
  }
  
  .rn-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding-bottom: 16px;
  }
  
  .rn-header h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .rn-icon {
    width: 52px;
    height: 52px;
  }
  
  .rn-icon svg {
    width: 26px;
    height: 26px;
  }
  
  .rn-header h3 {
    font-size: 1.25rem;
  }
  
  .rn-intro {
    font-size: 0.95rem;
    text-align: center;
  }
  
  .rn-checklist li {
    padding: 14px 16px;
    font-size: 0.9rem;
  }
  
  .rn-checklist li svg {
    width: 22px;
    height: 22px;
  }
}

/* Timeline Wrapper Full Width */
.timeline-wrapper-full {
  max-width: 1200px;
  margin: 0 auto 48px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.timeline-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gray-100);
}

.timeline-header-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(3, 105, 161, 0.3);
}

.timeline-header-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}

.timeline-header-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 6px 0;
}

.timeline-header-text p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

/* Registration Grid - Side by Side Layout */
.registration-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.form-wrapper {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.petunjuk-wrapper {
  position: sticky;
  top: 100px;
}

.form-pendaftaran-wrapper {
  /* Form akan mengikuti tinggi konten */
}

/* Card Timeline - Terpisah dari Form */
.card-timeline {
  max-width: 1000px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.card-timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card-timeline-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 2px dashed var(--gray-200);
}

.cth-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(3, 105, 161, 0.35);
  position: relative;
}

.cth-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0.2;
  z-index: -1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.1); opacity: 0.3; }
}

.cth-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.5;
}

.cth-text h3 {
  font-size: 1.65rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 6px 0;
}

.cth-text p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}

.card-timeline-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ct-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  flex: 1;
  padding: 28px 20px;
  background: white;
  border-radius: 16px;
  border: 2px solid var(--gray-200);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.ct-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--accent);
}

.ct-step.active {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.25);
}

.ct-step.active::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  z-index: -1;
  opacity: 0.1;
}

.ct-step-num {
  width: 56px;
  height: 56px;
  background: var(--gray-100);
  color: var(--gray-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 3px solid var(--gray-200);
}

.ct-step.active .ct-step-num {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.2), 0 4px 16px rgba(3, 105, 161, 0.3);
  transform: scale(1.05);
}

.ct-step-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-step-body strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.ct-step.active .ct-step-body strong {
  color: var(--primary-dark);
}

.ct-step-body span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.ct-step-arrow {
  flex-shrink: 0;
  color: var(--gray-300);
  position: relative;
}

.ct-step-arrow svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}

/* Card Petunjuk - Terpisah dari Form */
.card-petunjuk {
  max-width: 1000px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.15);
  border: 2px solid #fbbf24;
  position: relative;
  overflow: hidden;
}

.card-petunjuk::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.card-petunjuk-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px dashed #fbbf24;
  position: relative;
  z-index: 1;
}

.cph-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
  position: relative;
}

.cph-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  opacity: 0.2;
  z-index: -1;
}

.cph-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.5;
}

.cph-text h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #92400e;
  margin: 0 0 6px 0;
}

.cph-text p {
  font-size: 1rem;
  color: #78350f;
  margin: 0;
  font-weight: 600;
}

.card-petunjuk-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.cp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: white;
  border-radius: 14px;
  border: 2px solid #fde68a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.08);
}

.cp-item:hover {
  border-color: #fbbf24;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
}

.cp-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cp-check svg {
  width: 20px;
  height: 20px;
  stroke-width: 3;
}

.cp-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.cp-text strong {
  color: #92400e;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

/* Form Header */
.form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gray-100);
}

.form-header-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(3, 105, 161, 0.3);
}

.form-header-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.5;
}

.form-header-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 4px 0;
}

.form-header-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* Registration Guidelines */
/* Progress Steps */
.form-progress {
  display: flex;
  align-items: center;
  margin-bottom: 44px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--gray-300);
  color: var(--gray-400);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.progress-step.active .step-circle {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
  box-shadow: 0 0 0 4px rgba(3,105,161,0.15);
}
.progress-step.completed .step-circle {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}
.progress-step span { font-size: 0.75rem; font-weight: 600; color: var(--gray-400); }
.progress-step.active span { color: var(--primary); }
.progress-step.completed span { color: var(--accent-dark); }

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  margin: 0 4px;
  align-self: flex-start;
  margin-top: 19px;
  transition: var(--transition);
}
.progress-line.active { background: linear-gradient(to right, var(--primary), var(--accent)); }

/* Form Steps */
.form-step { display: none; }
.form-step.active { display: block; animation: stepIn 0.3s ease; }

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.form-group.full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 6px; width: 100%; max-width: 100%; box-sizing: border-box; }

.form-group label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  word-break: break-word;
}
.form-group label svg { width: 14px; height: 14px; stroke: currentColor; color: var(--primary); }
.required { color: #ef4444; }

#registrasiForm,
#uploadForm {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
#registrasiForm input:not([type="radio"]):not([type="checkbox"]),
#registrasiForm textarea,
#registrasiForm select,
#uploadForm input:not([type="checkbox"]),
#uploadForm textarea,
#uploadForm select {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
#uploadForm .gdrive-input-wrap {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}
#registrasiForm .input-prefix {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(3,105,161,0.10);
}
.form-group input.error, .form-group textarea.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.10); }

.select-wrap {
  position: relative;
}
.select-wrap select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
  appearance: none;
  cursor: pointer;
}
.select-wrap select:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(3,105,161,0.10); }
.select-wrap svg { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--gray-400); pointer-events: none; stroke: currentColor; }

/* ============================================================
   JENIS PESERTA DROPDOWN - STANDARD INPUT STYLING
   ============================================================ */

.jenis-peserta-wrapper {
  position: relative;
}

.jenis-peserta-wrapper select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
  appearance: none;
  cursor: pointer;
}

.jenis-peserta-wrapper select:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.10);
}

.jenis-peserta-wrapper select option {
  padding: 12px;
  font-size: 0.9rem;
  color: var(--gray-900);
  background: white;
}

.jenis-peserta-wrapper::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--gray-400);
  pointer-events: none;
  transition: all 0.3s ease;
}

.jenis-peserta-wrapper select:focus ~ .jenis-peserta-wrapper::after {
  border-top-color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .jenis-peserta-wrapper select {
    padding: 12px 40px 12px 16px;
    font-size: 0.9rem;
  }
  
  .jenis-peserta-wrapper::after {
    right: 14px;
  }
}

.input-prefix {
  display: flex;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  background: var(--gray-50);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.input-prefix > * { min-width: 0; }
.input-prefix:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(3,105,161,0.10); background: white; }
.input-prefix span { padding: 12px 14px; background: var(--gray-200); font-size: 0.875rem; font-weight: 600; color: var(--gray-600); border-right: 2px solid var(--gray-200); white-space: nowrap; flex-shrink: 0; }
.input-prefix .input-suffix { flex-shrink: 0; }
.input-prefix input { flex: 1; min-width: 0; border: none; background: transparent; padding: 12px 14px; font-family: var(--font); font-size: 0.9rem; color: var(--gray-900); outline: none; width: 100%; }

.form-error { font-size: 0.78rem; color: #ef4444; font-weight: 500; min-height: 18px; }

.form-step-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.form-step-header h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 700;
  margin: 10px 0 8px;
  color: var(--blue-950);
  line-height: 1.2;
}
.form-step-header .step-sub {
  color: var(--text-muted);
  max-width: 760px;
  font-size: 0.95rem;
}

.gdrive-guide {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(3,105,161,0.12);
  border-radius: calc(var(--radius-xl) + 4px);
  box-shadow: 0 20px 60px rgba(3,105,161,0.08);
  padding: 28px;
  margin-bottom: 24px;
}
.gdrive-guide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.gdrive-guide-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(3,105,161,0.15), rgba(6,182,212,0.14));
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.gdrive-guide-header h4 {
  font-size: 1.05rem;
  color: var(--blue-950);
  margin-bottom: 8px;
}
.gdrive-guide-header p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 720px;
}
.gdrive-guide-body { margin-top: 24px; }
.guide-steps { display: grid; gap: 16px; }
.guide-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 18px 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(3,105,161,0.03);
  border: 1px solid rgba(3,105,161,0.10);
}
.gs-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.gs-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--blue-950);
  margin-bottom: 6px;
}
.gs-content span {
  display: block;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.75;
}
.gs-content code {
  display: inline-block;
  margin: 6px 0 0;
  padding: 8px 10px;
  background: rgba(3,105,161,0.08);
  color: var(--blue-950);
  border-radius: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.82rem;
}
.gdrive-warning {
  background: linear-gradient(90deg, rgba(254,226,226,0.95), rgba(255,245,224,0.95));
  border: 1px solid rgba(240,113,0,0.18);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.gw-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(245,158,11,0.12);
  display: grid;
  place-items: center;
  color: #d97706;
}
.gw-body strong {
  display: block;
  font-size: 0.95rem;
  color: var(--blue-950);
  margin-bottom: 8px;
}
.gw-body ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.7;
}
.gdrive-setting-visual {
  margin-top: 22px;
}
.gsv-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-950);
  margin-bottom: 14px;
}
.gsv-mockup {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,23,42,0.08);
  background: white;
  overflow: hidden;
  display: grid;
  gap: 10px;
  padding: 16px;
}
.gsv-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
}
.gsv-row.correct {
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.22);
}
.gsv-row.wrong {
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.22);
}
.gsv-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
}
.gsv-row.correct .gsv-check { background: var(--accent); }
.gsv-row.wrong .gsv-check { background: #ef4444; }
.gsv-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.gsv-icon svg {
  width: 20px;
  height: 20px;
}
.gdrive-globe { background: rgba(3,105,161,0.08); }
.gsv-row.correct .gsv-icon { color: var(--accent-dark); }
.gsv-row.wrong .gsv-icon { color: #ef4444; }
.gsv-row strong { display: block; font-size: 0.9rem; color: var(--blue-950); }
.gsv-row span { display: block; font-size: 0.82rem; color: var(--gray-600); }
.gsv-badge {
  border-radius: var(--radius-full);
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}
.correct-badge { background: rgba(6,182,212,0.12); color: var(--accent-dark); }
.wrong-badge { background: rgba(239,68,68,0.12); color: #b91c1c; }

.gdrive-input-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.gdrive-verify-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 700;
  transition: var(--transition);
}
.gdrive-verify-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-blue); }
.gdrive-link-status {
  margin-top: 14px;
  min-height: 22px;
  font-size: 0.92rem;
  color: var(--gray-700);
}
.gdrive-hint {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 14px;
  padding: 16px 18px;
  background: rgba(3,105,161,0.08);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(3,105,161,0.12);
  color: var(--blue-950);
}
.gdrive-hint i { width: 22px; height: 22px; display: grid; place-items: center; color: var(--primary); }
.gdrive-hint strong { color: var(--blue-950); }

/* Lomba radio cards */
.lomba-radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 6px; }

.lomba-radio-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.lomba-radio-card input[type="radio"] { display: none; }
.lomba-radio-card:hover { border-color: var(--primary); background: rgba(3,105,161,0.03); }
.lomba-radio-card:has(input:checked) {
  border-color: var(--primary);
  background: rgba(3,105,161,0.05);
  box-shadow: 0 0 0 3px rgba(3,105,161,0.10);
}

.lrc-inner { display: flex; align-items: center; gap: 12px; }
.lrc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lrc-icon.blue { background: rgba(3,105,161,0.10); color: var(--primary); }
.lrc-icon.cyan { background: rgba(6,182,212,0.12); color: var(--accent-dark); }
.lrc-icon.purple { background: rgba(124,58,237,0.12); color: var(--purple-600); }
.lrc-icon svg { width: 26px; height: 26px; }
.lrc-inner strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--gray-900); }
.lrc-inner span { font-size: 0.775rem; color: var(--text-muted); margin-top: 2px; display: block; }

.lrc-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.lrc-check svg { width: 12px; height: 12px; stroke: white; opacity: 0; }
.lomba-radio-card:has(input:checked) .lrc-check {
  background: var(--primary);
  border-color: var(--primary);
}
.lomba-radio-card:has(input:checked) .lrc-check svg { opacity: 1; }

.char-count { font-size: 0.75rem; color: var(--gray-400); text-align: right; }

/* Upload Zone */
.upload-zone {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--gray-50);
}
.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--primary);
  background: rgba(3,105,161,0.03);
}

.upload-icon { margin-bottom: 14px; }
.upload-icon svg { width: 44px; height: 44px; color: var(--gray-400); stroke: currentColor; margin: 0 auto; }
.upload-main { font-size: 1rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.upload-sub { font-size: 0.875rem; color: var(--primary); font-weight: 500; margin-bottom: 8px; }
.upload-hint { font-size: 0.775rem; color: var(--gray-400); }

.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: previewIn 0.3s ease;
}
@keyframes previewIn { from { opacity:0; transform: scale(0.8); } to { opacity:1; transform: scale(1); } }

.preview-item img { width: 100%; height: 100%; object-fit: cover; }
.preview-item .preview-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.preview-item .preview-icon svg {
  width: 28px;
  height: 28px;
}
.preview-remove {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  cursor: pointer;
  border: 2px solid white;
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-300);
  border-radius: 5px;
  flex-shrink: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.checkbox-label:has(input:checked) .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}
.checkbox-label:has(input:checked) .checkbox-custom::after {
  content: '✓';
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}
.checkbox-text { font-size: 0.875rem; color: var(--gray-700); line-height: 1.6; }
.checkbox-text a { color: var(--primary); text-decoration: underline; }

/* Form Navigation */
.form-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

.btn-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-next:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.btn-next svg { width: 16px; height: 16px; stroke: currentColor; }

.btn-prev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-prev:hover { border-color: var(--gray-400); background: var(--gray-50); }
.btn-prev svg { width: 16px; height: 16px; stroke: currentColor; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(22,163,74,0.30);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(22,163,74,0.40); }
.btn-submit svg { width: 16px; height: 16px; stroke: currentColor; }
.btn-submit.loading { opacity: 0.7; pointer-events: none; }

/* Form Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
  animation: successIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.form-success.hidden { display: none; }
@keyframes successIn { from { opacity:0; transform: scale(0.85); } to { opacity:1; transform: scale(1); } }

.success-icon { width: 100px; height: 100px; margin: 0 auto 24px; animation: successPulse 2s ease infinite; }
@keyframes successPulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.05);} }

.form-success h3 { font-size: 1.6rem; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.form-success p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.success-info {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  margin-bottom: 28px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.success-info div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray-700);
}
.success-info svg { width: 14px; height: 14px; stroke: currentColor; color: var(--primary); }

/* ── FAQ Section ── */
.faq-section { background: var(--gray-50); }

.faq-grid { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
#ketentuan .faq-grid { max-width: 100%; flex-direction: row; gap: 24px; }
#ketentuan .faq-item { flex: 1; min-width: 0; }

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq-q:hover { color: var(--primary); }
.faq-q.active { color: var(--primary); }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; stroke: currentColor; transition: transform var(--transition); color: var(--primary); }
.faq-q.active svg { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a.open { max-height: 3000px; }
.faq-a p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.faq-a ol { padding: 8px 24px 20px; margin: 0; }

/* ── Ketentuan & Policy Section ── */
.ketentuan-policy-section {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--blue-50) 100%);
  position: relative;
  overflow: hidden;
}

.policy-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.policy-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.policy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.policy-card-header {
  padding: 32px 32px 24px;
  background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
  border-bottom: 2px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.policy-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  position: relative;
}

.policy-icon-wrap.blue-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
}

.policy-icon-wrap.purple-gradient {
  background: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-400) 100%);
  color: white;
}

.policy-header-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
  line-height: 1.3;
}

.policy-header-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.policy-card-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.policy-item:hover {
  background: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.policy-item.highlight-danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.03) 100%);
  border-color: rgba(239, 68, 68, 0.2);
}

.policy-item.highlight-danger:hover {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(220, 38, 38, 0.05) 100%);
  border-color: rgba(239, 68, 68, 0.3);
}

.policy-item.highlight-success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(22, 163, 74, 0.03) 100%);
  border-color: rgba(34, 197, 94, 0.2);
}

.policy-item.highlight-success:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(22, 163, 74, 0.05) 100%);
  border-color: rgba(34, 197, 94, 0.3);
}

.policy-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.policy-item.highlight-danger .policy-item-icon {
  color: #dc2626;
  background: rgba(239, 68, 68, 0.1);
}

.policy-item.highlight-success .policy-item-icon {
  color: #16a34a;
  background: rgba(34, 197, 94, 0.1);
}

.policy-item-text {
  flex: 1;
}

.policy-item-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
  line-height: 1.4;
}

.policy-item-text p {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin: 0;
}

.text-danger {
  color: #dc2626;
  font-weight: 700;
  background: rgba(239, 68, 68, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.text-success {
  color: #16a34a;
  font-weight: 700;
  background: rgba(34, 197, 94, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Responsive Design for Policy Cards */
@media (max-width: 968px) {
  .policy-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .policy-card-header {
    padding: 24px 24px 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .policy-icon-wrap {
    width: 56px;
    height: 56px;
  }
  
  .policy-card-body {
    padding: 20px 24px 24px;
  }
  
  .policy-item {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
  
  .policy-item-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 640px) {
  .policy-card-header {
    padding: 20px 20px 16px;
  }
  
  .policy-header-text h3 {
    font-size: 1.25rem;
  }
  
  .policy-header-text p {
    font-size: 0.8rem;
  }
  
  .policy-card-body {
    padding: 16px 20px 20px;
    gap: 16px;
  }
  
  .policy-item {
    padding: 14px;
  }
  
  .policy-item-text strong {
    font-size: 0.875rem;
  }
  
  .policy-item-text p {
    font-size: 0.8rem;
  }
}

/* ── Footer ── */
.footer { background: var(--blue-950); color: rgba(255,255,255,0.8); margin-top: 0; }

.footer-wave {
  background: var(--gray-50);
  line-height: 0;
}
.footer-wave svg { width: 100%; height: 60px; display: block; }

.footer-body { padding: 64px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  border-radius: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.footer-logo:hover .footer-logo-img {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}
.footer-logo strong { display: block; font-size: 1rem; color: white; font-weight: 700; }
.footer-logo span { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 2px; display: block; }

.footer-desc { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: white; transform: translateY(-2px); }

.footer-col h5 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col a:hover { color: var(--cyan-300); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.contact-item svg { width: 14px; height: 14px; stroke: currentColor; color: var(--accent); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Winner Section ── */
.winner-section {
  background: linear-gradient(160deg, var(--blue-100) 0%, white 50%, var(--gray-50) 100%);
}

.winner-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  background: white;
  border-radius: var(--radius-full);
  padding: 6px;
  max-width: 360px;
  margin: 0 auto 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.tab-btn-winner {
  flex: 1;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}
.tab-btn-winner.active {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-blue);
}
.tab-btn-winner:hover:not(.active) {
  color: var(--gray-700);
}

.winner-content.hidden { display: none; }

.winner-podium {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.winner-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}
.winner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.winner-card.first {
  border-color: #f59e0b;
  box-shadow: 0 8px 32px rgba(245,158,11,0.15);
  transform: scale(1.03);
}
.winner-card.first:hover {
  transform: scale(1.03) translateY(-4px);
}

.winner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0 0 var(--radius-md) 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.winner-badge.gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.winner-thumb {
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.w-thumb-1 { background: linear-gradient(135deg, #0c4a6e, #0369a1, #0891b2); }
.w-thumb-2 { background: linear-gradient(135deg, #075985, #0369a1, #0ea5e9); }
.w-thumb-3 { background: linear-gradient(135deg, #0f172a, #1e3a5f, #0369a1); }
.w-thumb-4 { background: linear-gradient(135deg, #164e63, #0891b2, #22d3ee); }
.w-thumb-5 { background: linear-gradient(135deg, #0c4a6e, #06b6d4, #67e8f9); }
.w-thumb-6 { background: linear-gradient(135deg, #0369a1, #0ea5e9, #38bdf8); }
.w-thumb-7 { background: linear-gradient(135deg, #581c87, #7c3aed, #a78bfa); }
.w-thumb-8 { background: linear-gradient(135deg, #3b0764, #6d28d9, #8b5cf6); }
.w-thumb-9 { background: linear-gradient(135deg, #4c1d95, #7c3aed, #c4b5fd); }

.winner-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: var(--transition);
}

.winner-overlay-img {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
}
.winner-overlay-img svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}
.winner-thumb:hover .winner-overlay-img { opacity: 1; }
.winner-thumb:hover .winner-placeholder { opacity: 0.3; transform: scale(0.9); }

.winner-info {
  padding: 18px 20px 20px;
  text-align: center;
}

.winner-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.winner-unit {
  display: block;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}
.winner-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.winner-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.winner-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: var(--transition);
}
.winner-social-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.winner-social-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.winner-cta {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.winner-cta p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .winner-podium { grid-template-columns: 1fr; max-width: 340px; }
  .winner-card.first { transform: none; order: -1; }
  .winner-card.first:hover { transform: translateY(-4px); }
  .winner-thumb { height: 120px; }
}

/* ── Registration Flow Indicator ── */
.regist-flow-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}
.rf-step {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rf-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rf-circle.muted {
  background: var(--gray-300);
  color: var(--gray-500);
}
.rf-text strong {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-900);
}
.rf-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.rf-arrow {
  color: var(--gray-400);
  display: flex;
}
.rf-arrow svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 640px) {
  .regist-flow-indicator {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    align-items: stretch;
  }
  .rf-step {
    gap: 12px;
  }
  .rf-arrow {
    transform: rotate(90deg);
    justify-content: center;
    padding: 2px 0;
  }
  .rf-circle {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  .rf-text strong {
    font-size: 0.78rem;
  }
  .rf-text span {
    font-size: 0.68rem;
  }
}

.form-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(3,105,161,0.06);
  border: 1px solid rgba(3,105,161,0.12);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.6;
}
.form-notice svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.success-card {
  background: linear-gradient(135deg, rgba(3,105,161,0.06), rgba(6,182,212,0.06));
  border: 2px dashed var(--primary);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  margin: 0 auto 24px;
  max-width: 380px;
  text-align: center;
}
.success-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.success-card-id {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  font-family: ui-monospace, monospace;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.success-card-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Upload Section ── */
.upload-section {
  background: linear-gradient(160deg, var(--gray-50) 0%, white 50%, var(--blue-100) 100%);
}

.upload-login {
  max-width: 480px;
  margin: 0 auto;
}
.upload-login-header {
  text-align: center;
  margin-bottom: 28px;
}
.upload-login-header svg {
  margin: 0 auto 16px;
}
.upload-login-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-950);
  margin-bottom: 6px;
}
.upload-login-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.upload-login-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}
.upload-login-footer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.upload-form-content {
  animation: stepIn 0.4s ease;
}

.upload-session-info {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(3,105,161,0.04) 0%, rgba(6,182,212,0.04) 100%);
  border: 1px solid rgba(3,105,161,0.15);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  transition: all 0.3s ease;
}
.upload-session-info:hover {
  border-color: rgba(3,105,161,0.25);
  box-shadow: 0 4px 12px rgba(3,105,161,0.08);
}
.usi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(3,105,161,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.usi-detail {
  flex: 1;
  min-width: 0;
}
.usi-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-900);
}
.usi-meta {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.usi-logout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-300);
  color: var(--gray-600);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  background: white;
}
.usi-logout:hover {
  border-color: #ef4444;
  color: #ef4444;
}
.usi-logout svg {
  width: 15px;
  height: 15px;
}

/* ── Login Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal-overlay.active {
  opacity: 1;
}
.modal-overlay.hidden {
  display: none;
}
.modal-overlay:not(.hidden) {
  display: flex;
}
.modal-content {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px 36px 32px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalIn {
  from { opacity:0; transform: scale(0.9) translateY(20px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
  background: var(--gray-100);
}
.modal-close:hover {
  background: var(--gray-200);
  color: var(--gray-700);
}
.modal-close svg {
  width: 18px;
  height: 18px;
}
.input-prefix {
  display: flex;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  background: var(--gray-50);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.input-prefix > * { min-width: 0; }
.input-prefix:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(3,105,161,0.10); background: white; }
.input-prefix span { padding: 12px 14px; background: var(--gray-200); font-size: 0.875rem; font-weight: 600; color: var(--gray-600); border-right: 2px solid var(--gray-200); white-space: nowrap; flex-shrink: 0; }
.input-prefix .input-suffix { flex-shrink: 0; }
.input-prefix input { flex: 1; min-width: 0; border: none; background: transparent; padding: 12px 14px; font-family: var(--font); font-size: 0.9rem; color: var(--gray-900); outline: none; width: 100%; }

.input-suffix {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: transparent;
  color: var(--gray-400);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.input-suffix:hover { color: var(--primary); }
.input-suffix svg { width: 18px; height: 18px; }

/* ── Login Modal Compact ── */
.modal-body {
  padding: 0;
}
.login-header-compact {
  text-align: center;
  margin-bottom: 24px;
}
.login-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(3,105,161,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.login-header-compact h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-950);
  margin-bottom: 4px;
}
.login-header-compact p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 280px;
  margin: 0 auto;
}
.login-form-compact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.login-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.login-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
}
.login-field input {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
}
.login-field input:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(3,105,161,0.10);
}
.login-field .input-prefix input {
  border: none;
  background: transparent;
  padding: 12px 14px;
}
.login-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.login-footer-compact {
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.85rem;
  color: var(--gray-600);
}
.login-footer-compact a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.upload-section.hidden {
  display: none;
}

/* Fix duplicate input-prefix */
.form-group .input-prefix {
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(3,105,161,0.40); }
.back-to-top svg { width: 18px; height: 18px; stroke: currentColor; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 180px); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 16px; }

  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; height: 100vh; width: 280px; background: white; padding: 80px 24px 24px; box-shadow: -4px 0 32px rgba(0,0,0,0.12); z-index: 999; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--gray-700); padding: 12px 16px; border-radius: var(--radius-md); font-size: 1rem; }
  .nav-links a:hover { color: var(--primary); background: var(--gray-50); }
  .nav-links .nav-cta { background: var(--primary); color: white; text-align: center; margin-top: 8px; }
  .hamburger { display: flex; z-index: 1000; }

  .hero { padding: 100px 16px 64px; }
  .hero-stats { gap: 20px; padding: 20px 24px; flex-wrap: wrap; }
  .stat-divider { display: none; }
  .hero-year { gap: 12px; }
  .year-big { font-size: 2.8rem; }

  .info-grid { grid-template-columns: 1fr; }
  .podium-grid { grid-template-columns: 1fr; max-width: 300px; }
  .podium-card.gold { order: -1; }

  .form-wrapper { padding: 28px 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .lomba-radio-grid { grid-template-columns: 1fr; }
  #registrasiForm input:not([type="radio"]):not([type="checkbox"]),
  #registrasiForm textarea,
  #registrasiForm select,
  #uploadForm input:not([type="checkbox"]),
  #uploadForm textarea,
  #uploadForm select {
    font-size: 0.8rem !important;
    padding: 10px 12px !important;
  }
  #registrasiForm .input-prefix,
  #uploadForm .gdrive-input-wrap { max-width: 100% !important; }
  #registrasiForm .input-prefix input,
  #uploadForm .gdrive-input-wrap input { min-width: 0 !important; width: 100% !important; }
  .anggota-tim-wrapper { grid-template-columns: 1fr; }
  .jenis-peserta-grid { grid-template-columns: 1fr; }
  .surat-download-item { flex-wrap: wrap; gap: 8px; }
  .surat-body { min-width: 100%; order: -1; }
  .btn-download-surat { width: 100%; justify-content: center; }
  .registration-notice { padding: 16px; }
  .rn-checklist li { font-size: 0.78rem; gap: 8px; }
}

@media (max-width: 480px) {
  .form-wrapper { padding: 20px 12px; }
  #registrasiForm input:not([type="radio"]):not([type="checkbox"]),
  #registrasiForm textarea,
  #registrasiForm select,
  #uploadForm input:not([type="checkbox"]),
  #uploadForm textarea,
  #uploadForm select {
    font-size: 0.75rem !important;
    padding: 8px 10px !important;
  }
  .form-group label {
    font-size: 0.8rem;
  }
  .rf-circle { width: 28px; height: 28px; font-size: 0.7rem; }
  .rf-text strong { font-size: 0.72rem; }
  .rf-text span { font-size: 0.62rem; }
  .lomba-checkbox-card { padding: 0.7rem 0.5rem; }
  .jenis-peserta-card { padding: 1rem; }
  .kategori-form-section { padding: 0.75rem; }

  /* Card Timeline Mobile */
  .card-timeline {
    padding: 28px 24px;
    margin-bottom: 24px;
  }

  .card-timeline-header {
    margin-bottom: 24px;
    padding-bottom: 18px;
  }

  .cth-icon {
    width: 50px;
    height: 50px;
  }

  .cth-icon svg {
    width: 24px;
    height: 24px;
  }

  .cth-text h3 {
    font-size: 1.3rem;
  }

  .cth-text p {
    font-size: 0.875rem;
  }

  .card-timeline-steps {
    flex-direction: column;
    gap: 16px;
  }

  .ct-step {
    width: 100%;
    padding: 20px 18px;
  }

  .ct-step-num {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .ct-step-body strong {
    font-size: 1rem;
  }

  .ct-step-body span {
    font-size: 0.85rem;
  }

  .ct-step-arrow {
    transform: rotate(90deg);
    margin: -8px 0;
  }

  .ct-step-arrow svg {
    width: 24px;
    height: 24px;
  }

  /* Card Petunjuk Mobile */
  .card-petunjuk {
    padding: 28px 24px;
    margin-bottom: 24px;
  }

  .card-petunjuk-header {
    margin-bottom: 20px;
    padding-bottom: 18px;
  }

  .cph-icon {
    width: 50px;
    height: 50px;
  }

  .cph-icon svg {
    width: 24px;
    height: 24px;
  }

  .cph-text h3 {
    font-size: 1.3rem;
  }

  .cph-text p {
    font-size: 0.875rem;
  }

  .card-petunjuk-body {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cp-item {
    padding: 16px 18px;
    gap: 12px;
  }

  .cp-check {
    width: 32px;
    height: 32px;
  }

  .cp-check svg {
    width: 18px;
    height: 18px;
  }

  .cp-text {
    font-size: 0.875rem;
  }

  /* Form Header Mobile */
  .form-header {
    margin-bottom: 24px;
    padding-bottom: 18px;
  }

  .form-header-icon {
    width: 44px;
    height: 44px;
  }

  .form-header-icon svg {
    width: 22px;
    height: 22px;
  }

  .form-header-text h3 {
    font-size: 1.15rem;
  }

  .form-header-text p {
    font-size: 0.85rem;
  }

  /* Registration Guidelines Mobile */
  .registration-guidelines {
    padding: 20px 18px;
    margin-bottom: 28px;
  }

  .rg-header {
    gap: 10px;
    margin-bottom: 16px;
  }

  .rg-icon {
    width: 40px;
    height: 40px;
  }

  .rg-icon svg {
    width: 20px;
    height: 20px;
  }

  .rg-header h3 {
    font-size: 1.1rem;
  }

  .rg-intro {
    font-size: 0.875rem;
    margin-bottom: 12px;
  }

  .rg-checklist {
    gap: 10px;
  }

  .rg-item {
    padding: 12px 14px;
    gap: 10px;
  }

  .rg-check {
    width: 24px;
    height: 24px;
  }

  .rg-check svg {
    width: 16px;
    height: 16px;
  }

  .rg-text {
    font-size: 0.875rem;
  }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 160px); }

  .countdown-grid { gap: 8px; }
  .cd-box { padding: 14px 16px; min-width: 72px; }
  .cd-num { font-size: 2rem; }
  .cd-sep { font-size: 1.8rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .back-to-top { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-stats { gap: 16px; justify-content: space-around; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 160px; }
  .form-progress span { display: none; }
}

/* ── File Input Styling ── */
.form-group input[type="file"] {
  padding: 10px 14px;
  font-size: 0.875rem;
  cursor: pointer;
  background: white;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.form-group input[type="file"]::-webkit-file-upload-button {
  padding: 8px 16px;
  margin-right: 12px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.form-group input[type="file"]::-webkit-file-upload-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(3,105,161,0.25);
}

.form-group input[type="file"]::file-selector-button {
  padding: 8px 16px;
  margin-right: 12px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.form-group input[type="file"]::file-selector-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(3,105,161,0.25);
}

.form-hint {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 12px;
  background: rgba(6,182,212,0.08);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--gray-700);
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: break-word;
}

.form-hint i {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--accent);
  margin-top: 2px;
}

/* ── Download Surat Styles ── */
.surat-download-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.surat-download-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(3,105,161,0.04);
  border: 1px solid rgba(3,105,161,0.12);
  border-radius: 10px;
  transition: var(--transition);
}

.surat-download-item:hover {
  background: rgba(3,105,161,0.07);
  border-color: rgba(3,105,161,0.25);
}

.surat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3,105,161,0.10);
  border-radius: 8px;
  color: var(--primary);
}

.surat-body {
  flex: 1;
  min-width: 0;
}

.surat-body strong {
  display: block;
  font-size: 0.85rem;
  color: var(--blue-900);
  margin-bottom: 2px;
}

.surat-body span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.btn-download-surat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid var(--primary);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(3,105,161,0.20);
  letter-spacing: 0.3px;
}

.btn-download-surat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3,105,161,0.35);
  background: linear-gradient(135deg, #0a4f7a, #0891b2);
}

.btn-download-surat svg {
  width: 18px;
  height: 18px;
}

.form-hint strong {
  color: var(--primary);
  font-weight: 600;
}

/* Card Timeline */
.card-timeline {
  max-width: 760px;
  margin: 0 auto 24px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}
.card-timeline-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.card-timeline-header i {
  width: 22px;
  height: 22px;
  color: var(--primary);
}
.card-timeline-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
}
.card-timeline-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.ct-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.ct-step.active {
  background: rgba(3,105,161,0.06);
  border-color: var(--primary);
}
.ct-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--gray-200);
  color: var(--gray-500);
  flex-shrink: 0;
}
.ct-step.active .ct-step-num {
  background: var(--primary);
  color: white;
}
.ct-step-body strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-800);
}
.ct-step-body span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.ct-step-arrow {
  color: var(--primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Card Petunjuk */
.card-petunjuk {
  max-width: 760px;
  margin: 0 auto 24px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}
.card-petunjuk-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.card-petunjuk-header i {
  width: 22px;
  height: 22px;
  color: var(--primary);
}
.card-petunjuk-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
}
.card-petunjuk-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.cp-item-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  background: var(--accent);
  color: white;
  flex-shrink: 0;
}
.cp-item-body strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-800);
}
.cp-item-body span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.4;
}

/* ── Professional Registration Guide Wrapper ── */
.registration-guide-wrapper {
  max-width: 1100px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Timeline Card */
.reg-timeline-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  box-shadow: 0 8px 32px rgba(3, 105, 161, 0.12);
  border: 2px solid rgba(3, 105, 161, 0.15);
  position: relative;
  overflow: hidden;
}

.reg-timeline-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(3, 105, 161, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.reg-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 2px dashed rgba(3, 105, 161, 0.2);
  position: relative;
  z-index: 1;
}

.reg-header-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(3, 105, 161, 0.35);
  position: relative;
}

.reg-header-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0.2;
  z-index: -1;
  animation: pulse 2s ease-in-out infinite;
}

.reg-header-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
}

.reg-header-text h3 {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 8px 0;
}

.reg-header-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}

.reg-timeline-steps {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.reg-timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 32px 24px;
  background: white;
  border-radius: 16px;
  border: 2px solid var(--gray-200);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.reg-timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(3, 105, 161, 0.15);
  border-color: var(--accent);
}

.reg-timeline-item.active {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.25);
}

.reg-timeline-number {
  width: 64px;
  height: 64px;
  background: var(--gray-100);
  color: var(--gray-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 3px solid var(--gray-200);
}

.reg-timeline-item.active .reg-timeline-number {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.2), 0 4px 16px rgba(3, 105, 161, 0.3);
  transform: scale(1.05);
}

.reg-timeline-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.reg-timeline-item.active .reg-timeline-content h4 {
  color: var(--primary-dark);
}

.reg-timeline-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.reg-timeline-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: var(--gray-300);
  align-self: center;
  margin-top: -80px;
  position: relative;
}

.reg-timeline-connector::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 1.2rem;
  font-weight: 700;
}

/* Instructions Card */
.reg-instructions-card {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.15);
  border: 2px solid #fbbf24;
  position: relative;
  overflow: hidden;
}

.reg-instructions-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.reg-header-icon.warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.reg-header-icon.warning::after {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.reg-instructions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.reg-instruction-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: 14px;
  border: 2px solid #fde68a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.08);
}

.reg-instruction-item:hover {
  border-color: #fbbf24;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
}

.reg-instruction-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.reg-instruction-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

.reg-instruction-content h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #92400e;
  margin: 0 0 6px 0;
}

.reg-instruction-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.reg-instructions-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(245, 158, 11, 0.12);
  border-radius: 14px;
  border: 2px solid rgba(245, 158, 11, 0.25);
  position: relative;
  z-index: 1;
}

.reg-instructions-note svg {
  width: 24px;
  height: 24px;
  color: #d97706;
  flex-shrink: 0;
  margin-top: 2px;
}

.reg-instructions-note span {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.reg-instructions-note strong {
  color: #92400e;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 968px) {
  .reg-timeline-steps {
    flex-direction: column;
    gap: 12px;
  }
  
  .reg-timeline-connector {
    width: 2px;
    height: 40px;
    margin: 0 auto;
    margin-top: 0;
  }
  
  .reg-timeline-connector::after {
    content: '↓';
    right: 50%;
    top: auto;
    bottom: -8px;
    transform: translateX(50%);
  }
  
  .reg-instructions-grid {
    grid-template-columns: 1fr;
  }
  
  .registration-guide-wrapper {
    padding: 0 16px;
  }
  
  .reg-timeline-card,
  .reg-instructions-card {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .card-timeline-steps {
    flex-direction: column;
    gap: 8px;
  }
  .ct-step-arrow {
    transform: rotate(90deg);
  }
  .card-petunjuk-list {
    grid-template-columns: 1fr;
  }
  
  .reg-card-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .reg-header-text h3 {
    font-size: 1.4rem;
  }
  
  .reg-header-text p {
    font-size: 0.95rem;
  }
  
  .reg-timeline-number {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  
  .reg-instruction-item {
    flex-direction: column;
    text-align: center;
  }
  
  .reg-instruction-icon {
    margin: 0 auto;
  }
}

/* ============================================================
   TIMELINE HORIZONTAL & PETUNJUK LIST (Form-Wrapper Style)
============================================================ */

/* Timeline Steps Horizontal */
.timeline-steps-horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}

.timeline-step-h {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px 20px;
  background: linear-gradient(135deg, rgba(3, 105, 161, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
  border: 2px solid rgba(3, 105, 161, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.timeline-step-h:hover {
  background: linear-gradient(135deg, rgba(3, 105, 161, 0.06) 0%, rgba(6, 182, 212, 0.06) 100%);
  border-color: rgba(3, 105, 161, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(3, 105, 161, 0.12);
}

.timeline-step-h.active {
  background: linear-gradient(135deg, rgba(3, 105, 161, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
  border-color: #0369a1;
  box-shadow: 0 4px 16px rgba(3, 105, 161, 0.15);
}

.tsh-number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0369a1 0%, #06b6d4 100%);
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.3);
  flex-shrink: 0;
}

.timeline-step-h.active .tsh-number {
  animation: pulse-number 2s ease-in-out infinite;
}

@keyframes pulse-number {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(3, 105, 161, 0.5), 0 0 0 8px rgba(3, 105, 161, 0.1);
  }
}

.tsh-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tsh-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.tsh-content p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.timeline-arrow-h {
  flex-shrink: 0;
  color: #0369a1;
  opacity: 0.4;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.timeline-arrow-h svg {
  width: 28px;
  height: 28px;
}

/* Petunjuk List */
.petunjuk-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px 0;
}

.petunjuk-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(3, 105, 161, 0.02) 0%, rgba(6, 182, 212, 0.02) 100%);
  border: 1px solid rgba(3, 105, 161, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.petunjuk-item:hover {
  background: linear-gradient(135deg, rgba(3, 105, 161, 0.04) 0%, rgba(6, 182, 212, 0.04) 100%);
  border-color: rgba(3, 105, 161, 0.15);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(3, 105, 161, 0.08);
}

.petunjuk-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0369a1 0%, #06b6d4 100%);
  color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.2);
}

.petunjuk-icon svg {
  width: 24px;
  height: 24px;
}

.petunjuk-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.petunjuk-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.petunjuk-content p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.petunjuk-content strong {
  color: #0369a1;
  font-weight: 600;
}

/* Form Notice (untuk catatan di bawah petunjuk) */
.form-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(245, 158, 11, 0.08) 100%);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  margin-top: 24px;
}

.form-notice svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #f59e0b;
  margin-top: 2px;
}

.form-notice span {
  flex: 1;
  font-size: 0.95rem;
  color: #78350f;
  line-height: 1.6;
}

.form-notice strong {
  color: #92400e;
  font-weight: 600;
}

.form-notice a {
  color: #0369a1;
  text-decoration: underline;
  font-weight: 500;
}

.form-notice a:hover {
  color: #06b6d4;
}

/* Responsive untuk Timeline & Petunjuk */
@media (max-width: 1024px) {
  .registration-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .petunjuk-wrapper {
    position: static;
  }
  
  .timeline-wrapper-full {
    padding: 32px 28px;
  }
}

@media (max-width: 968px) {
  .timeline-steps-horizontal {
    flex-direction: column;
    gap: 12px;
  }
  
  .timeline-arrow-h {
    transform: rotate(90deg);
    margin: -8px 0;
  }
  
  .timeline-step-h {
    width: 100%;
    padding: 20px 16px;
  }
  
  .tsh-number {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  
  .tsh-content h4 {
    font-size: 1rem;
  }
  
  .tsh-content p {
    font-size: 0.875rem;
  }
  
  .timeline-wrapper-full {
    padding: 28px 20px;
  }
  
  .timeline-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .petunjuk-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 16px;
  }
  
  .petunjuk-icon {
    width: 44px;
    height: 44px;
  }
  
  .petunjuk-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .petunjuk-content h4 {
    font-size: 1rem;
  }
  
  .petunjuk-content p {
    font-size: 0.875rem;
  }
  
  .form-notice {
    padding: 14px 16px;
    font-size: 0.875rem;
  }
}

/* ============================================================
   GUIDELINE MODAL STYLES
   ============================================================ */

.modal-guideline {
  max-width: 900px;
  width: 95%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-header-guideline {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 32px 24px;
  border-bottom: 2px solid var(--gray-100);
  background: linear-gradient(135deg, rgba(3,105,161,0.03) 0%, rgba(6,182,212,0.03) 100%);
}

.modal-header-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}

.modal-header-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  stroke-width: 2;
}

.modal-header-text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.modal-header-text p {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.modal-tabs {
  display: flex;
  gap: 8px;
  padding: 20px 32px 0;
  background: var(--gray-50);
  border-bottom: 2px solid var(--gray-200);
}

.modal-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  border: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.modal-tab-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.modal-tab-btn:hover {
  background: rgba(3,105,161,0.05);
  color: var(--primary);
}

.modal-tab-btn.active {
  background: white;
  color: var(--primary);
  box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
}

.modal-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 3px 3px 0 0;
}

.modal-body-guideline {
  flex: 1;
  overflow-y: auto;
  padding: 32px;
  background: white;
}

.modal-body-guideline::-webkit-scrollbar {
  width: 8px;
}

.modal-body-guideline::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 4px;
}

.modal-body-guideline::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}

.modal-body-guideline::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

.modal-tab-content {
  display: none;
  animation: fadeInUp 0.3s ease;
}

.modal-tab-content.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Guideline Section */
.guideline-section {
  margin-bottom: 32px;
}

.guideline-section:last-child {
  margin-bottom: 0;
}

.guideline-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}

.guideline-header svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  stroke-width: 2;
  flex-shrink: 0;
}

.guideline-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.guideline-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guideline-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
  transition: all var(--transition);
}

.guideline-list li:hover {
  background: rgba(6,182,212,0.08);
  border-left-color: var(--primary);
  transform: translateX(4px);
}

.guideline-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.guideline-list li span {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Brief Section */
.brief-section {
  margin-bottom: 32px;
}

.brief-section:last-child {
  margin-bottom: 0;
}

.brief-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(3,105,161,0.05) 0%, rgba(6,182,212,0.05) 100%);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}

.brief-header svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  stroke-width: 2;
  flex-shrink: 0;
}

.brief-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.brief-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-secondary);
  padding: 16px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}

.brief-inspiration {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.brief-inspiration-item {
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.brief-inspiration-item:hover {
  background: white;
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.brief-inspiration-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.brief-inspiration-item p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.modal-footer-guideline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px 32px;
  border-top: 2px solid var(--gray-100);
  background: var(--gray-50);
}

.btn-modal-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: white;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-modal-secondary:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
  color: var(--text-primary);
}

.btn-modal-secondary svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.btn-modal-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-blue);
}

.btn-modal-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(3,105,161,0.35);
}

.btn-modal-primary svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

/* Responsive Modal Guideline */
@media (max-width: 768px) {
  .modal-guideline {
    width: 98%;
    max-height: 95vh;
  }

  .modal-header-guideline {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px 20px;
    gap: 16px;
  }

  .modal-header-icon {
    width: 56px;
    height: 56px;
  }

  .modal-header-icon svg {
    width: 28px;
    height: 28px;
  }

  .modal-header-text h3 {
    font-size: 1.5rem;
  }

  .modal-header-text p {
    font-size: 0.9375rem;
  }

  .modal-tabs {
    padding: 16px 20px 0;
    gap: 6px;
  }

  .modal-tab-btn {
    flex-direction: column;
    gap: 6px;
    padding: 12px 16px;
    font-size: 0.875rem;
  }

  .modal-tab-btn svg {
    width: 18px;
    height: 18px;
  }

  .modal-tab-btn span {
    font-size: 0.8125rem;
  }

  .modal-body-guideline {
    padding: 24px 20px;
  }

  .guideline-section {
    margin-bottom: 28px;
  }

  .guideline-header h4,
  .brief-header h4 {
    font-size: 1.125rem;
  }

  .guideline-list li {
    padding: 12px 14px;
  }

  .guideline-list li span {
    font-size: 0.875rem;
  }

  .brief-text {
    font-size: 0.875rem;
    padding: 14px 16px;
  }

  .brief-inspiration {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .modal-footer-guideline {
    flex-direction: column-reverse;
    padding: 16px 20px;
    gap: 10px;
  }

  .btn-modal-secondary,
  .btn-modal-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .modal-header-text h3 {
    font-size: 1.25rem;
  }

  .modal-header-text p {
    font-size: 0.875rem;
  }

  .modal-tabs {
    padding: 12px 16px 0;
  }

  .modal-tab-btn {
    padding: 10px 12px;
  }

  .modal-body-guideline {
    padding: 20px 16px;
  }

  .guideline-header,
  .brief-header {
    gap: 10px;
  }

  .guideline-header svg,
  .brief-header svg {
    width: 20px;
    height: 20px;
  }

  .guideline-header h4,
  .brief-header h4 {
    font-size: 1rem;
  }
}

/* ============================================================
   ANGGOTA TIM SECTION STYLING
   ============================================================ */

.anggota-tim-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(3, 105, 161, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
  border-radius: 12px;
  border: 1px solid rgba(3, 105, 161, 0.15);
  margin-bottom: 20px;
}

.anggota-tim-header svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.anggota-tim-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 4px 0;
}

.anggota-tim-header p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

.anggota-tim-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.anggota-tim-item {
  padding: 20px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.anggota-tim-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.1);
  transform: translateY(-2px);
}

.anggota-tim-item h5 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}

.anggota-tim-item h5 svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
}

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

.anggota-tim-item .form-group:last-child {
  margin-bottom: 0;
}

.anggota-tim-item .form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* Hidden class */
.hidden {
  display: none !important;
}

/* Responsive untuk anggota tim */
@media (max-width: 768px) {
  .anggota-tim-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .anggota-tim-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .anggota-tim-item {
    padding: 16px;
  }
}

/* ============================================================
   UPLOAD KARYA SECTION STYLES
============================================================ */

/* Google Drive Input Wrapper */
.gdrive-input-wrap {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.gdrive-input-wrap input {
  flex: 1;
}

.gdrive-verify-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.gdrive-verify-btn:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.2);
}

.gdrive-verify-btn svg {
  width: 16px;
  height: 16px;
}

/* Google Drive Link Status */
.gdrive-link-status {
  margin-top: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
  align-items: center;
  gap: 8px;
}

.gdrive-link-status.success {
  display: flex;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
}

.gdrive-link-status.error {
  display: flex;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

.gdrive-link-status svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Uploaded Works Section */
.uploaded-works-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--gray-200);
}

.uploaded-works-section h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  color: var(--blue-950);
  margin-bottom: 1.5rem;
}

.uploaded-works-section h3 svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}

/* Uploaded Work Card */
.uploaded-work-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.uploaded-work-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(3, 105, 161, 0.1);
  transform: translateY(-2px);
}

.uploaded-work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
}

.uploaded-work-info {
  flex: 1;
}

.uploaded-work-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(3, 105, 161, 0.1);
  color: var(--primary);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.uploaded-work-category svg {
  width: 14px;
  height: 14px;
}

.uploaded-work-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-950);
  margin: 0 0 8px 0;
}

.uploaded-work-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

.uploaded-work-actions {
  display: flex;
  gap: 8px;
}

.work-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-300);
  background: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.work-action-btn:hover {
  background: var(--gray-50);
  border-color: var(--primary);
}

.work-action-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--gray-600);
}

.work-action-btn:hover svg {
  stroke: var(--primary);
}

.work-action-btn.delete:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: #dc2626;
}

.work-action-btn.delete:hover svg {
  stroke: #dc2626;
}

.uploaded-work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  font-size: 0.85rem;
  color: var(--gray-600);
}

.uploaded-work-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.uploaded-work-meta-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gray-500);
}

.uploaded-work-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.uploaded-work-link:hover {
  color: var(--blue-700);
  text-decoration: underline;
}

.uploaded-work-link svg {
  width: 16px;
  height: 16px;
}

/* Empty State */
.uploaded-works-empty {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--gray-50);
  border: 2px dashed var(--gray-300);
  border-radius: 12px;
}

.uploaded-works-empty svg {
  width: 64px;
  height: 64px;
  stroke: var(--gray-400);
  margin-bottom: 16px;
}

.uploaded-works-empty h4 {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin: 0 0 8px 0;
}

.uploaded-works-empty p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0;
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 320px;
  max-width: 420px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  z-index: 10000;
  border-left: 4px solid var(--primary);
}

.notification.success {
  border-left-color: #10b981;
}

.notification.error {
  border-left-color: #ef4444;
}

.notification.warning {
  border-left-color: #f59e0b;
}

.notification-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-icon svg {
  width: 24px;
  height: 24px;
}

.notification.success .notification-icon svg {
  stroke: #10b981;
}

.notification.error .notification-icon svg {
  stroke: #ef4444;
}

.notification.warning .notification-icon svg {
  stroke: #f59e0b;
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-950);
  margin: 0 0 4px 0;
}

.notification-message {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.4;
}

.notification-close {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  transition: color 0.2s ease;
}

.notification-close:hover {
  color: var(--gray-700);
}

.notification-close svg {
  width: 18px;
  height: 18px;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.notification.hiding {
  animation: slideOutRight 0.3s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
  .gdrive-input-wrap {
    flex-direction: column;
  }
  
  .gdrive-verify-btn {
    width: 100%;
    justify-content: center;
  }
  
  .uploaded-work-header {
    flex-direction: column;
  }
  
  .uploaded-work-actions {
    width: 100%;
    justify-content: flex-end;
  }
  
  .notification {
    left: 20px;
    right: 20px;
    min-width: auto;
  }
}

/* ══════════════════════════════════════════════════════════════
   NOTIFICATION STYLES
   ══════════════════════════════════════════════════════════════ */

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10000;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 400px;
  border-left: 4px solid var(--primary);
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.notification-content i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.notification-success {
  border-left-color: #16a34a;
}

.notification-success i {
  color: #16a34a;
}

.notification-error {
  border-left-color: #dc2626;
}

.notification-error i {
  color: #dc2626;
}

.notification-info {
  border-left-color: var(--primary);
}

.notification-info i {
  color: var(--primary);
}

@media (max-width: 768px) {
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}


/* ══════════════════════════════════════════════════════════════
   STYLES UNTUK FORM UPLOAD MULTI-KATEGORI
   ══════════════════════════════════════════════════════════════ */

/* Checkbox Grid untuk Kategori */
.lomba-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.lomba-checkbox-card {
  position: relative;
  display: block;
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 0.9rem 0.75rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lomba-checkbox-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.1);
  transform: translateY(-2px);
}

.lomba-checkbox-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lomba-checkbox-card input[type="checkbox"]:checked ~ .lrc-inner {
  border-color: var(--primary);
}

.lomba-checkbox-card input[type="checkbox"]:checked ~ .lrc-check {
  opacity: 1;
  transform: scale(1);
}

.lomba-checkbox-card .lrc-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0.25rem;
  transition: all 0.2s ease;
}

.lomba-checkbox-card .lrc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.lomba-checkbox-card .lrc-icon svg {
  width: 26px;
  height: 26px;
}

.lomba-checkbox-card .lrc-icon.blue {
  background: linear-gradient(135deg, #0369a1 0%, #0891b2 100%);
  color: white;
}

.lomba-checkbox-card .lrc-icon.cyan {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
  color: white;
}

.lomba-checkbox-card .lrc-icon.purple {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: white;
}

.lomba-checkbox-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.15rem;
  line-height: 1.3;
}

.lomba-checkbox-card span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.3;
}

.lomba-checkbox-card .lrc-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.lomba-checkbox-card .lrc-check svg {
  width: 14px;
  height: 14px;
}

/* Kategori Form Section */
.kategori-form-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid #bae6fd;
  border-radius: 16px;
  padding: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  animation: slideDown 0.3s ease;
}

.kategori-form-section.hidden {
  display: none;
}

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

.kategori-form-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(3, 105, 161, 0.1);
}

.kategori-form-header .kfh-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.kategori-form-header .kfh-icon.blue {
  background: linear-gradient(135deg, #0369a1 0%, #0891b2 100%);
}

.kategori-form-header .kfh-icon.cyan {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}

.kategori-form-header .kfh-icon.purple {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.kategori-form-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .lomba-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 180px); }
}

@media (max-width: 768px) {
  .lomba-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .lomba-checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .lomba-checkbox-grid {
    grid-template-columns: 1fr;
  }
  
  .kategori-form-section {
    padding: 1rem;
  }
  
  .kategori-form-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}


/* ══════════════════════════════════════════════════════════════
   JENIS PESERTA CARD STYLE (MODERN DROPDOWN REPLACEMENT)
   ══════════════════════════════════════════════════════════════ */

.jenis-peserta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 0.5rem;
  max-width: 100%;
  box-sizing: border-box;
}

.jenis-peserta-card {
  position: relative;
  display: block;
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.jenis-peserta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0369a1 0%, #06b6d4 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.jenis-peserta-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(3, 105, 161, 0.12);
  transform: translateY(-4px);
}

.jenis-peserta-card:hover::before {
  transform: scaleX(1);
}

.jenis-peserta-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.jenis-peserta-card input[type="radio"]:checked ~ .jpc-inner {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.jenis-peserta-card input[type="radio"]:checked ~ .jpc-inner .jpc-icon {
  background: linear-gradient(135deg, #0369a1 0%, #06b6d4 100%);
  color: white;
  transform: scale(1.1);
}

.jenis-peserta-card input[type="radio"]:checked ~ .jpc-check {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.jenis-peserta-card .jpc-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--gray-50);
  border-radius: 12px;
  padding: 0.85rem;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
}

.jenis-peserta-card .jpc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: white;
  color: var(--primary);
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.jenis-peserta-card .jpc-icon svg {
  width: 28px;
  height: 28px;
}

.jenis-peserta-card .jpc-content {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.jenis-peserta-card .jpc-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.jenis-peserta-card .jpc-content span {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.jenis-peserta-card .jpc-check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0369a1 0%, #06b6d4 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5) rotate(-180deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.3);
}

.jenis-peserta-card .jpc-check svg {
  width: 18px;
  height: 18px;
}

/* Animation for card selection */
@keyframes cardPulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(3, 105, 161, 0.12);
  }
  50% {
    box-shadow: 0 8px 32px rgba(3, 105, 161, 0.2);
  }
}

.jenis-peserta-card input[type="radio"]:checked ~ .jpc-inner {
  animation: cardPulse 0.6s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .jenis-peserta-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .jenis-peserta-card {
    padding: 1.25rem;
  }
  
  .jenis-peserta-card .jpc-inner {
    gap: 1rem;
  }
  
  .jenis-peserta-card .jpc-icon {
    width: 48px;
    height: 48px;
  }
  
  .jenis-peserta-card .jpc-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .jenis-peserta-card .jpc-content strong {
    font-size: 1rem;
  }
  
  .jenis-peserta-card .jpc-content span {
    font-size: 0.85rem;
  }
}

/* Focus state for accessibility */
.jenis-peserta-card input[type="radio"]:focus ~ .jpc-inner {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ══════════════════════════════════════════════════════════════
   UPLOAD TAB NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.upload-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.upload-tab-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.upload-tab-btn:hover { color: var(--primary); background: var(--gray-100); }
.upload-tab-btn.active {
  color: #fff;
  background: var(--primary);
}
.upload-tab-content { display: none; }
.upload-tab-content.active { display: block; }

/* ══════════════════════════════════════════════════════════════
   STATUS SECTION
   ══════════════════════════════════════════════════════════════ */
.status-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px;
  margin-bottom: 20px;
}
.status-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}
.status-card-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
}
.status-card-header svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}
.status-card-body { padding: 0; }
.status-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.status-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.status-info-item.full { grid-column: 1 / -1; }
.sii-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-400);
}
.sii-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
}
.sii-value-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.sii-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--gray-700);
  background: var(--gray-50);
  transition: var(--transition);
}
.sii-input:focus { outline: none; border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(3,105,161,0.12); }
.sii-input:hover { border-color: var(--gray-300); }
.status-card.editing .sii-value { display: none; }
.status-card.editing .sii-input { background: white; border-color: var(--gray-300); }

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.status-badge.success {
  background: #dcfce7;
  color: #166534;
}
.status-badge.pending {
  background: #fef9c3;
  color: #854d0e;
}
.status-badge.rejected {
  background: #fee2e2;
  color: #991b1b;
}

/* Status Empty */
.status-empty {
  text-align: center;
  padding: 24px 0;
  color: var(--gray-400);
}
.status-empty svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  opacity: 0.5;
}
.status-empty p { font-size: 0.85rem; max-width: 360px; margin: 0 auto; }

/* ── Status Karya Item (vertical form) ── */
.status-karya-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 14px;
}
.status-karya-item:last-child { margin-bottom: 0; }
.sk-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}
.sk-number {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.sk-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sk-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sk-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-400);
  font-weight: 600;
}
.sk-value {
  font-size: 0.88rem;
  color: var(--gray-800);
  word-break: break-word;
}
.sk-value a { color: var(--primary); word-break: break-all; }
.sk-value a:hover { text-decoration: underline; }

/* ── Bukti Follow ── */
.bukti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .bukti-grid { grid-template-columns: 1fr; }
}
.bukti-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bukti-item .sii-label { font-size: 0.72rem; }
.bukti-preview img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.bukti-placeholder {
  display: block;
  padding: 20px;
  text-align: center;
  color: var(--gray-400);
  font-size: 0.8rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--gray-200);
}
.bukti-input { display: none; }
.status-card.editing .bukti-input {
  display: block;
  margin-bottom: 8px;
  width: 100%;
  padding: 8px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: white;
  font-size: 0.8rem;
  cursor: pointer;
}

/* ── Sch Actions (edit/save/cancel buttons) ── */
.sch-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.btn-edit, .btn-save, .btn-cancel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-edit {
  background: var(--gray-100);
  color: var(--gray-600);
}
.btn-edit:hover { background: var(--gray-200); color: var(--gray-800); }
.btn-edit svg { width: 14px; height: 14px; }
.btn-save {
  background: var(--primary);
  color: #fff;
}
.btn-save:hover { opacity: 0.9; }
.btn-cancel {
  background: var(--gray-100);
  color: var(--gray-600);
}
.btn-cancel:hover { background: var(--gray-200); }

/* ── Disabled submit ── */
.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--gray-400);
  box-shadow: none;
  transform: none !important;
}

/* ── Responsive ── */

@media (max-width: 600px) {
  .status-info-grid { grid-template-columns: 1fr; }
  .upload-tab-btn { font-size: 0.78rem; padding: 10px 14px; }
  .upload-tab-btn svg { width: 14px; height: 14px; }
}
