/* 
 * India Reel Championship Season 1 - Official CSS (Cinematic Upgrade)
 * Premium National-Level Reel Competition Aesthetic
 */

:root {
  --bg-dark: #07080c;
  --bg-card: #11131c;
  --bg-card-hover: #181b28;
  --bg-glass: rgba(17, 19, 28, 0.85);
  --gold-primary: #D4AF37;
  --gold-light: #FFD700;
  --gold-dark: #9A7B1C;
  --gold-gradient: linear-gradient(135deg, #FFE885 0%, #D4AF37 50%, #9A7B1C 100%);
  --gold-gradient-hover: linear-gradient(135deg, #FFF0A5 0%, #E5BE48 50%, #B28E25 100%);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.4);
  --gold-glow-strong: 0 0 40px rgba(255, 215, 0, 0.6);
  --tricolor-saffron: #FF9933;
  --tricolor-white: #FFFFFF;
  --tricolor-green: #138808;
  --text-main: #FFFFFF;
  --text-muted: #A1A8BD;
  --border-gold: rgba(212, 175, 55, 0.3);
  --border-gold-bright: rgba(255, 215, 0, 0.7);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-main: 0 15px 35px rgba(0,0,0,0.6);
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Fast Page Loader Overlay */
#pageLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#pageLoader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  height: 90px;
  animation: logoPulse 1.2s ease-in-out infinite alternate;
}

@keyframes logoPulse {
  0% { transform: scale(0.95); filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3)); }
  100% { transform: scale(1.05); filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)); }
}

.loader-line {
  width: 160px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

.loader-line-fill {
  width: 100%;
  height: 100%;
  background: var(--gold-gradient);
  position: absolute;
  left: -100%;
  animation: loaderProgress 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loaderProgress {
  100% { left: 0; }
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold);
  padding: 12px 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.4));
  transition: transform 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.05);
}

.brand-title {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.25s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-light);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* Premium Animated CTA Button */
.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: #07080c;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid var(--gold-light);
  box-shadow: var(--gold-glow);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  overflow: hidden;
}

/* Subtle moving shine across button every few seconds */
.btn-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  transform: rotate(30deg) translateX(-100%);
  animation: buttonShine 4s infinite ease-in-out;
}

@keyframes buttonShine {
  0%, 70% { transform: rotate(30deg) translateX(-100%); }
  100% { transform: rotate(30deg) translateX(100%); }
}

.btn-cta:hover {
  background: var(--gold-gradient-hover);
  transform: scale(1.04) translateY(-2px);
  box-shadow: var(--gold-glow-strong);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid var(--border-gold);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--gold-light);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 77px;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  border-bottom: 2px solid var(--gold-primary);
  padding: 20px;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-main);
  z-index: 999;
}

.mobile-drawer.open {
  display: flex;
}

.mobile-drawer .nav-link {
  font-size: 1.1rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Cinematic Hero Section */
.hero-section {
  position: relative;
  padding: 70px 0 90px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.18) 0%, rgba(7, 8, 12, 0.95) 75%);
}

/* Hero Particles Canvas / Elements */
.particles-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-symbol {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.25;
  animation: floatDrift 12s ease-in-out infinite alternate;
  user-select: none;
}

@keyframes floatDrift {
  0% { transform: translateY(0) rotate(0deg) scale(0.9); }
  50% { transform: translateY(-30px) rotate(15deg) scale(1.1); }
  100% { transform: translateY(-60px) rotate(-10deg) scale(1); }
}

.tricolor-stripe {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 0 15px rgba(255, 153, 51, 0.2);
}

.hero-logo-wrapper {
  margin: 0 auto 28px;
  max-width: 260px;
  position: relative;
}

.hero-logo-wrapper img {
  width: 100%;
  filter: drop-shadow(0 15px 30px rgba(212, 175, 55, 0.45));
  animation: heroLogoReveal 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes heroLogoReveal {
  0% { opacity: 0; transform: scale(0.85) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FFFFFF 0%, #E2E8F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-headline {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-subhead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 500;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Prize Box Display */
.prize-banner {
  background: linear-gradient(145deg, rgba(17, 19, 28, 0.95) 0%, rgba(10, 11, 16, 0.98) 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  max-width: 900px;
  margin: 0 auto 44px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), var(--gold-glow);
  position: relative;
  overflow: hidden;
}

.prize-banner-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

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

.prize-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px 14px;
  text-align: center;
  transition: all 0.35s ease;
}

.prize-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  box-shadow: var(--gold-glow);
}

.prize-card.first {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.25) 0%, rgba(17, 19, 28, 0.95) 100%);
  border-color: var(--gold-light);
  transform: scale(1.05);
  box-shadow: var(--gold-glow-strong);
}

.prize-badge {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.prize-rank {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
}

.prize-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Animated Horizontal Film Strip Banner */
.film-strip-wrapper {
  width: 100%;
  overflow: hidden;
  background: #000;
  border-top: 2px solid var(--gold-primary);
  border-bottom: 2px solid var(--gold-primary);
  padding: 12px 0;
  position: relative;
  user-select: none;
}

.film-strip-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: filmStripScroll 35s linear infinite;
}

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

.film-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

/* Section Header */
.section-title-wrap {
  text-align: center;
  margin-bottom: 44px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

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

/* Contest Highlights Grid */
.highlights-section {
  padding: 70px 0;
  background: rgba(255, 255, 255, 0.01);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  transition: all 0.35s ease;
}

.highlight-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--gold-glow);
  transform: translateY(-5px);
}

.highlight-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.highlight-value {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold-light);
}

/* Categories Section */
.categories-section {
  padding: 70px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.category-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-light);
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--gold-glow);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.2);
}

.category-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
}

/* How It Works Section with Animated Connecting Line */
.how-it-works-section {
  padding: 70px 0;
  background: rgba(255, 255, 255, 0.01);
}

.steps-wrapper {
  position: relative;
}

/* Connecting Line behind steps (Desktop) */
.steps-connecting-line {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 3px;
  background: rgba(212, 175, 55, 0.2);
  z-index: 1;
  transform: translateY(-50%);
  border-radius: 3px;
  overflow: hidden;
}

.steps-connecting-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  animation: linePulse 3s infinite linear;
}

@keyframes linePulse {
  0% { left: -30%; }
  100% { left: 100%; }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: all 0.35s ease;
}

.step-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--gold-glow);
  transform: translateY(-6px);
}

.step-number {
  font-size: 2.6rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Final CTA Section */
.final-cta-section {
  padding: 90px 0;
  text-align: center;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.final-cta-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 24px;
}

/* Forms & Cards Styling */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: var(--shadow-main);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.25s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  background: rgba(0, 0, 0, 0.7);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23D4AF37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select.form-control option {
  background: #11131c;
  color: #fff;
}

/* Digital Ticket Pass Styling */
.ticket-wrapper {
  max-width: 640px;
  margin: 40px auto;
}

.ticket-card {
  background: linear-gradient(145deg, #161926 0%, #0c0d14 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--shadow-main), var(--gold-glow);
  overflow: hidden;
}

.ticket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed var(--border-gold);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.ticket-contest-id {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-light);
  padding: 14px 24px;
  border-radius: 50px;
  text-align: center;
  margin-bottom: 24px;
  animation: scaleInTicket 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleInTicket {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.contest-id-text {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--gold-light);
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.ticket-field {
  background: rgba(0,0,0,0.35);
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.05);
}

.field-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field-value {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

/* Badge System */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.badge-success { background: rgba(19, 136, 8, 0.25); color: #2ecc71; border: 1px solid #2ecc71; }
.badge-warning { background: rgba(241, 196, 15, 0.25); color: #f1c40f; border: 1px solid #f1c40f; }
.badge-danger { background: rgba(231, 76, 60, 0.25); color: #e74c3c; border: 1px solid #e74c3c; }
.badge-winner { background: var(--gold-gradient); color: #000; border: 1px solid #fff; font-weight: 900; }

/* Admin Dashboard Table */
.admin-table-wrapper {
  width: 100%;
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  margin-top: 20px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.admin-table th, .admin-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  white-space: nowrap;
}

.admin-table th {
  background: rgba(0,0,0,0.5);
  color: var(--gold-light);
  font-weight: 800;
  text-transform: uppercase;
}

.admin-table tr:hover {
  background: rgba(212, 175, 55, 0.05);
}

/* Scroll Reveal Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Footer */
.footer {
  background: #040508;
  border-top: 1px solid var(--border-gold);
  padding: 50px 0 30px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-logo {
  height: 56px;
}

.footer-text {
  max-width: 600px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  font-size: 0.85rem;
}

/* Mobile Responsive Optimization */
@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-title { font-size: 2.1rem; }
  .hero-headline { font-size: 1.4rem; }
  .prizes-grid { grid-template-columns: 1fr; gap: 14px; }
  .prize-card.first { transform: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-connecting-line { display: none; }
  .ticket-grid { grid-template-columns: 1fr; }
  .hero-section { padding: 40px 0 60px; }
  .prize-banner { padding: 24px 16px; }
}

@media print {
  .header, .footer, .btn-cta, .no-print, #pageLoader { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .ticket-card { border: 2px solid #000 !important; color: #000 !important; background: #fff !important; box-shadow: none !important; }
  .contest-id-text { color: #000 !important; }
  .field-value { color: #000 !important; }
}
