/* ==========================================================================
   KOREM 044 GARUDA DEMPO - LOMBA VIDEO KREATIF 2026 STYLESHEET
   Matching 5 Slide Mockup UI Specifications Exactly
   ========================================================================== */

:root {
  /* Color Tokens */
  --primary-dark: #0F3822;
  --primary-medium: #14532D;
  --primary-light: #166534;
  --primary-subtle: #EAF4EE;

  --accent-gold: #F59E0B;
  --accent-gold-hover: #D97706;
  --accent-gold-bg: #FEF3C7;
  --accent-gold-text: #78350F;

  --bg-app: #111827;
  /* Outer background dark shadow framing */
  --bg-card: #F4F8F5;
  /* Main app container soft mint-white canvas */
  --bg-surface-white: #FFFFFF;
  --bg-surface-dark: #0B2B19;

  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #F8FAFC;

  --border-color: #E2E8F0;
  --border-active: #0F3822;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(15, 56, 34, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 56, 34, 0.08);
  --shadow-lg: 0 20px 35px -10px rgba(15, 56, 34, 0.12);

  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-app);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  -webkit-font-smoothing: antialiased;
}

/* App Viewport Container */
.app-viewport {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Outer Main Card Container matching the UI Mockup frame */
.app-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  padding: 32px 40px;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   HEADER NAVIGATION
   -------------------------------------------------------------------------- */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  border-radius: 50%;
}

.shield-icon {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.brand-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
  letter-spacing: -0.2px;
}

/* Navigation Pills Container */
.nav-pills {
  background-color: #E2ECE5;
  padding: 5px;
  border-radius: var(--radius-full);
  display: flex;
  gap: 4px;
}

.nav-link {
  background: transparent;
  border: none;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-dark);
}

.nav-link.active {
  background-color: var(--primary-dark);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(15, 56, 34, 0.15);
}

/* Header Badge (Top Right) */
.header-badge {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
  transition: var(--transition-fast);
}

/* --------------------------------------------------------------------------
   SLIDES MAIN AREA
   -------------------------------------------------------------------------- */
.slides-wrapper {
  flex: 1;
  position: relative;
  margin-bottom: 24px;
}

.slide-view {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.slide-view.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   SLIDE 1: BERANDA (HERO SECTION)
   -------------------------------------------------------------------------- */
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  padding-top: 10px;
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #DCFCE7;
  color: #15803D;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  letter-spacing: 0.4px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.text-highlight {
  color: #166534;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* Buttons */
.btn {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
  border: none;
}

.btn-primary {
  background-color: var(--primary-dark);
  color: var(--text-light);
  box-shadow: 0 8px 18px rgba(15, 56, 34, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-medium);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 56, 34, 0.3);
}

.btn-outline {
  background-color: var(--bg-surface-white);
  color: var(--primary-dark);
  border: 1px solid #CBD5E1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.btn-outline:hover {
  border-color: var(--primary-dark);
  background-color: #F8FAFC;
  transform: translateY(-2px);
}

/* Hero Right Image Card */
.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background-color: #CBD5E1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
}

.prize-info-box {
  background-color: rgba(15, 56, 34, 0.92);
  backdrop-filter: blur(8px);
  color: var(--text-light);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.prize-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2px;
}

.prize-subtitle {
  font-size: 0.75rem;
  color: #A7F3D0;
}

.medal-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   SLIDE 2: SYARAT (PERSYARATAN & KETENTUAN)
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: 28px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
  letter-spacing: -0.4px;
}

.section-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
}

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

.feature-card {
  background-color: var(--bg-surface-white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition-fast);
}

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

.card-icon-badge {
  width: 44px;
  height: 44px;
  background-color: #DCFCE7;
  color: #166534;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.gold-icon {
  background-color: #FEF3C7;
  color: #B45309;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.45;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list li i {
  color: #166534;
  margin-top: 3px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   SLIDE 3: PENILAIAN (ASPEK & ETIKA KONTEN)
   -------------------------------------------------------------------------- */
.cards-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.highlight-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-md);
}

.dark-card {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

.light-card {
  background-color: var(--bg-surface-white);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.highlight-title {
  font-size: 1.25rem;
  font-weight: 800;
}

.text-dark {
  color: var(--primary-dark);
}

.card-sub-intro {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.dark-list li {
  color: #E2E8F0;
}

.dark-list li i {
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   SLIDE 4: HADIAH (APRESIASI KARYA)
   -------------------------------------------------------------------------- */
.prizes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prize-card {
  background-color: var(--bg-surface-white);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid #E2E8F0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-fast);
}

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

.prize-card.champion {
  border: 2px solid var(--accent-gold);
  box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.2);
}

.prize-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gold-badge {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.green-badge {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

.prize-image-wrap {
  width: 100%;
  height: 150px;
  margin-top: 24px;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #F1F5F9;
}

.prize-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prize-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.prize-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   SLIDE 5: FORM PENDAFTARAN & SUBMIT VIDEO
   -------------------------------------------------------------------------- */
.form-container-card {
  background-color: var(--bg-surface-white);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.form-header {
  text-align: center;
  margin-bottom: 24px;
}

.form-main-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.form-main-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Stepper Component */
.stepper-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 650px;
  margin: 0 auto 28px auto;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: #E2E8F0;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item.completed .step-icon {
  background-color: #166534;
  color: #FFFFFF;
}

.step-item.active .step-icon {
  background-color: var(--primary-dark);
  color: #FFFFFF;
  ring: 4px rgba(15, 56, 34, 0.2);
}

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.step-divider {
  flex: 1;
  height: 2px;
  background-color: #E2E8F0;
  margin: 0 12px;
  position: relative;
  top: -10px;
}

.step-divider.active {
  background-color: #166534;
}

/* Form Fields Layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.required {
  color: #EF4444;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-main);
  font-size: 0.88rem;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-md);
  background-color: #F8FAFC;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-dark);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(15, 56, 34, 0.1);
}

/* Form Wizard Panels */
.wizard-panel {
  display: none;
  animation: fadeInStep 0.35s ease;
}

.wizard-panel.active {
  display: block;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.wizard-guide-box {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guide-icon-badge {
  width: 56px;
  height: 56px;
  background-color: #DCFCE7;
  color: #166534;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.guide-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.guide-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.guide-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-item {
  font-size: 0.8rem;
  color: #475569;
  font-weight: 600;
}

.checkbox-confirm {
  margin-top: 12px;
  background-color: #FFFFFF;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid #CBD5E1;
}

.custom-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
}

.custom-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-dark);
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

/* Review Card Step 4 */
.review-card {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.review-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background-color: #FFFFFF;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid #E2E8F0;
}

.review-item {
  display: flex;
  flex-direction: column;
}

.review-item.full {
  grid-column: span 2;
}

.review-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.review-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-dark);
  word-break: break-all;
}

.btn-submit-final {
  background-color: var(--primary-dark);
  color: #FFFFFF;
  padding: 12px 28px;
}


/* --------------------------------------------------------------------------
   FOOTER & PAGINATION CONTROLS
   -------------------------------------------------------------------------- */
.app-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.page-indicator-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pagination-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: #CBD5E1;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  width: 28px;
  background-color: var(--primary-dark);
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   MODAL DIALOG (BUKTI PENDAFTARAN TIKET)
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--bg-surface-white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 520px;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #F1F5F9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.ticket-header {
  text-align: center;
  margin-bottom: 20px;
}

.ticket-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #DCFCE7;
  color: #166534;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.ticket-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.ticket-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ticket-body {
  background-color: #F8FAFC;
  border: 1px dashed #CBD5E1;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.ticket-qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.qr-box {
  width: 80px;
  height: 80px;
  background-color: #FFFFFF;
  padding: 6px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.qr-svg {
  width: 100%;
  height: 100%;
}

.reg-number {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
}

.ticket-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-row {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.detail-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  word-break: break-word;
}

.text-success {
  color: #166534;
}

.ticket-footer {
  display: flex;
  gap: 12px;
}

.ticket-footer .btn {
  flex: 1;
}

/* Print Styles */
@media print {
  body * {
    visibility: hidden;
  }

  .modal-backdrop,
  .modal-backdrop * {
    visibility: visible;
  }

  .modal-backdrop {
    position: absolute;
    left: 0;
    top: 0;
    background: none;
  }

  .modal-close-btn,
  .ticket-footer {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   COMPREHENSIVE RESPONSIVE DESIGN (TABLETS, PHONES & SMALL SCREENS)
   -------------------------------------------------------------------------- */

/* Responsive Typography & Fluid Layouts */
@media (max-width: 1024px) {
  .app-card {
    padding: 24px 28px;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .cards-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .prizes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding: 12px 8px;
  }

  .app-card {
    padding: 20px 16px;
    border-radius: var(--radius-md);
  }

  .app-header {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .brand-container {
    justify-content: space-between;
    width: 100%;
  }

  .header-badge {
    align-self: flex-start;
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .brand-badge {
    width: 56px;
    height: 56px;
  }

  .shield-icon {
    width: 44px;
    height: 44px;
  }

  .nav-pills {
    justify-content: flex-start;
  }

  /* Horizontal Scrollable Nav Pills */
  .nav-pills {
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    padding: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
  }

  .nav-pills::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
  }

  .nav-link {
    padding: 8px 14px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 0.88rem;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cards-grid-3,
  .cards-grid-2,
  .prizes-grid,
  .form-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-item.full {
    grid-column: span 1;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  /* Stepper adjustments for tablet/mobile */
  .stepper-wrapper {
    margin-bottom: 20px;
  }

  .step-label {
    font-size: 0.68rem;
  }

  .step-divider {
    margin: 0 6px;
  }

  .wizard-guide-box {
    padding: 18px 14px;
  }

  .wizard-actions {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .wizard-actions .btn {
    width: 100%;
  }

  /* Ticket Modal Responsive */
  .modal-card {
    padding: 24px 18px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .ticket-body {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 16px 12px;
  }

  .ticket-footer {
    flex-direction: column;
  }

  /* Footer Responsive */
  .app-footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .brand-badge {
    width: 48px;
    height: 48px;
  }

  .shield-icon {
    width: 38px;
    height: 38px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 0.85rem;
  }

  .feature-card,
  .highlight-card,
  .prize-card,
  .form-container-card {
    padding: 16px;
  }

  .step-label {
    display: none;
    /* Hide labels on very small screens to keep step nodes clean */
  }

  .step-divider {
    top: 0;
  }
}