/* ============================================
   PETROMAYAB - LITROS DE SUERTE
   Complete Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

/* ============================================
   LAYER ORDER
   ============================================ */
@layer reset, tokens, base, layout, components, animations;

/* ============================================
   RESET
   ============================================ */
@layer reset {
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  img, svg {
    display: block;
    max-width: 100%;
  }

  button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
  }

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

  ul, ol {
    list-style: none;
  }

  input, select, textarea {
    font: inherit;
    border: none;
    outline: none;
    background: none;
  }

  h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    font-size: inherit;
  }
}

/* ============================================
   TOKENS
   ============================================ */
@layer tokens {
  :root {
    /* Colors */
    --clr-bg: #f5f5f0;
    --clr-surface: #ffffff;
    --clr-surface-2: #ecece6;
    --clr-surface-3: #e0e0d8;
    --clr-border: rgba(0, 0, 0, 0.08);
    --clr-border-2: rgba(0, 0, 0, 0.14);
    --clr-text: #0a0a0a;
    --clr-text-2: #555555;
    --clr-text-3: #888888;
    --clr-accent: #ee7600;
    --clr-accent-dark: #ff942a;
    --clr-accent-glow: rgba(224, 138, 16, 0.25);
    --clr-accent-complementary: rgb(41 132 232);
    --clr-success: #16a34a;
    --clr-success-glow: rgba(22, 163, 74, 0.3);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', 'Fira Mono', monospace;

    /* Font Sizes (clamp) */
    --fs-xs: clamp(0.625rem, 1.2vw, 0.75rem);
    --fs-sm: clamp(0.75rem, 1.5vw, 0.875rem);
    --fs-base: clamp(0.875rem, 1.8vw, 1rem);
    --fs-md: clamp(1rem, 2vw, 1.125rem);
    --fs-lg: clamp(1.125rem, 2.2vw, 1.25rem);
    --fs-xl: clamp(1.25rem, 2.5vw, 1.5rem);
    --fs-2xl: clamp(1.5rem, 3vw, 2rem);
    --fs-3xl: clamp(2rem, 4vw, 3rem);
    --fs-4xl: clamp(2.5rem, 6vw, 4.5rem);

    /* Spacing */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.25rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;
    --sp-24: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-accent: 0 0 24px var(--clr-accent-glow), 0 0 48px var(--clr-accent-glow);

    /* Transitions */
    --tr-fast: 150ms ease;
    --tr-base: 300ms ease;
    --tr-slow: 500ms ease;
    --bg-gradient:
      radial-gradient(ellipse 70% 55% at 50% 0%,   #ff8c00 0%, transparent 65%),
      radial-gradient(ellipse 55% 45% at 0%  60%,   #d45500 0%, transparent 55%),
      radial-gradient(ellipse 55% 45% at 100% 60%,  #f59e0b 0%, transparent 55%),
      linear-gradient(170deg, #c94c00 0%, #e86200 25%, #f5830a 50%, #d95e00 75%, #b84000 100%);
  }
}

/* ============================================
   BASE
   ============================================ */
@layer base {
  html {
    font-size: 16px;
  }

  body {
    font-family: var(--font-sans);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    transition:
      background-color var(--tr-base),
      color var(--tr-base);
    overflow-x: hidden;
  }

  ::selection {
    background-color: var(--clr-accent);
    color: #0a0a0a;
  }

  :focus-visible {
    outline: 2px solid var(--clr-accent);
    outline-offset: 2px;
  }

  .scroll-margin {
    scroll-margin-top: 100px;
  }
}

/* ============================================
   LAYOUT
   ============================================ */
@layer layout {
  .container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
  }

  .container--narrow {
    max-width: 800px;
  }

  .section {
    padding-block: var(--sp-24);
  }

  .section-label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-text-3);
    margin: 0 auto var(--sp-4);
    text-align: center;
  }

  .section-title {
    font-size: var(--fs-3xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--clr-text);
    margin-bottom: var(--sp-12);
    line-height: 1.1;
    text-align: center;
  }
   .section-subtitle {
    font-size: var(--fs-md);
    font-weight: 500;
    color: var(--clr-text-2);
    margin: calc(var(--sp-10) * -1) 0 var(--sp-8);
    line-height: 1.5;
    text-align: center;
    /* text-transform: uppercase; */
  }

  .section-title--accent {
    color: var(--clr-accent);
  }
}

/* ============================================
   COMPONENTS
   ============================================ */
@layer components {

  /* ---- BUTTONS ---- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: var(--sp-4) var(--sp-8);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
      background-color var(--tr-fast),
      color var(--tr-fast),
      box-shadow var(--tr-fast),
      transform var(--tr-fast),
      border-color var(--tr-fast);
    cursor: pointer;
    border: 2px solid transparent;
  }

  .btn--primary {
    background-color: var(--clr-accent);
    color: #444;
    box-shadow: 0 4px 20px var(--clr-accent-glow);
  }

  .btn--primary:hover {
    background-color: var(--clr-accent-dark);
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
  }

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

  .btn--secondary {
    background-color: transparent;
    color: var(--clr-text-2);
    border-color: var(--clr-border-2);
  }

  .btn--secondary:hover {
    background-color: var(--clr-surface-2);
    color: var(--clr-text);
    border-color: var(--clr-border-2);
  }


  .btn--teriary {
    background-color: var(--clr-surface-2);
    color: var(--clr-text-2);
    border-color: var(--clr-border-2);
  }

  .btn--teriary:hover {
    background-color: var(--clr-surface-3);
    color: var(--clr-text);
    border-color: var(--clr-border-2);
  }

  .btn--quarty {
    background-color: var(--clr-accent-complementary);
    color: #fff;
    box-shadow: 0 4px 20px var(--clr-accent-glow);
  }

  .btn--quarty:hover {
    background-color: var(--clr-accent-dark);
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
  }

  .btn--full {
    width: 100%;
  }

  /* ---- HEADER ---- */
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(245, 245, 240, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--clr-border);
    transition:
      background-color var(--tr-base),
      box-shadow var(--tr-base);
  }

  .header--scrolled {
    box-shadow: var(--shadow-md);
  }

  .header__container {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
    padding: var(--sp-4) var(--sp-6);
    max-width: 1200px;
    margin-inline: auto;
    justify-content: space-between;
  }

  .header__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: var(--sp-1) var(--sp-4);
    background-color: var(--clr-surface-2);
    border-bottom: 1px solid var(--clr-border);
    border-top: 1px solid var(--clr-border);
    transition: background-color var(--tr-base);
  }

  .header__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--clr-success);
    box-shadow: 0 0 8px var(--clr-success-glow);
    animation: pulse-glow 2s ease-in-out infinite;
    flex-shrink: 0;
  }

  .header__badge-text {
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--clr-text-2);
  }

  /* ---- LOGO ---- */
  .logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    flex-shrink: 1;

    .logo__petromayab {width: 200px;max-width: 60%;}
    .logo__litros {width: 100px;max-width: 25%;}
  }

  .logo__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .logo__text {
    font-size: var(--fs-lg);
    font-weight: 900;
    letter-spacing: 0.04em;
    color: var(--clr-text);
    transition: color var(--tr-base);
  }

  .logo__highlight {
    color: var(--clr-accent);
  }

  /* ---- NAV ---- */
  .nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .nav__list {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
  }

  .nav__link {
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color var(--tr-fast);
    position: relative;
    padding-block: var(--sp-1);
  }

  .nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--clr-accent);
    transform: scaleX(0);
    transition: transform var(--tr-fast);
    border-radius: 1px;
  }

  .nav__link:hover,
  .nav__link--active {
    color: var(--clr-text);
  }

  .nav__link--active::after,
  .nav__link:hover::after {
    transform: scaleX(1);
  }

  /* ---- NAV TOGGLE (hamburger) ---- */
  .nav-toggle {
    display: none;
    width: 45px;
    height: 47px;
    border-radius: var(--radius-md);
    /* border: 1px solid var(--clr-border-2); */
    background-color: var(--clr-surface-2);
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    transition:
      background-color var(
    --tr-fast),
      color var(--tr-fast);
    flex-shrink: 0;
  }

  /* ---- HERO ---- */
  .hero {
    position: relative;
    display: flex;
    overflow: hidden;
    background: var(--bg-gradient);
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: url(../img/texture.svg) 10px 10px/45px;
    opacity: .3;
    mix-blend-mode: overlay;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.4) 0%, transparent 100%),
      radial-gradient(1px 1px at 20% 60%, rgba(255,255,255,0.2) 0%, transparent 100%),
      radial-gradient(1px 1px at 30% 35%, rgba(255,255,255,0.3) 0%, transparent 100%),
      radial-gradient(1px 1px at 45% 80%, rgba(255,255,255,0.15) 0%, transparent 100%),
      radial-gradient(1px 1px at 55% 20%, rgba(255,255,255,0.35) 0%, transparent 100%),
      radial-gradient(1px 1px at 65% 55%, rgba(255,255,255,0.2) 0%, transparent 100%),
      radial-gradient(1px 1px at 75% 10%, rgba(255,255,255,0.4) 0%, transparent 100%),
      radial-gradient(1px 1px at 85% 45%, rgba(255,255,255,0.25) 0%, transparent 100%),
      radial-gradient(1px 1px at 90% 75%, rgba(255,255,255,0.3) 0%, transparent 100%),
      radial-gradient(1px 1px at 5% 90%, rgba(255,255,255,0.2) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 38% 45%, rgba(255,255,255,0.15) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 70% 30%, rgba(255,255,255,0.2) 0%, transparent 100%);
    pointer-events: none;
  }

  .hero__content {
    position: relative;
    z-index: 3;
    /* text-align: center; */
    /* padding: var(--sp-8); */
    /* max-width: 800px; */
    /* animation: fade-in-up 0.8s ease both; */
    width: 1200px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
    /* text-align: center; */
  }

  .hero__info {
    max-width: 43%;
    text-align: left;
    padding: var(--sp-8) 0;
  }

  .hero__logo {
    max-width: 290px;
    width: 80%;
    
    
    
    
    
    
    img {
      width: 100%;
      height: auto;
    }
  }

  
  .hero__title {
    font-size: var(--fs-4xl);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    margin-bottom: var(--sp-6);
    text-transform: uppercase;
  }

  .hero__title--accent {
    color: #ffe082;
    display: block;
    text-shadow: 0 0 28px rgba(255, 220, 80, 0.55);
  }

  .hero__subtitle {
    font-size: var(--fs-md);
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: var(--sp-10);
    line-height: 1.7;
    font-weight: 600;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  }

  .hero__scroll {
    position: absolute;
    bottom: var(--sp-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.65);
    animation: bounce-down 2s ease-in-out infinite;
  }

  /* ---- LUCKY ELEMENTS ---- */
  .lucky {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
  }

  .lucky__item {
    position: absolute;
    opacity: 0.4;
  }

  .lucky__clover {
    width: 60px;
    height: 60px;
    color: #16a34a;
    animation: float 8s ease-in-out infinite;
  }

  .lucky__clover--sm {
    width: 60px;
    height: 60px;
  }

  .lucky__clover--lg {
    width: 100px;
    height: 100px;
  }

  .lucky__ticket {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
  }

  .lucky__ticket--sm {
    width: 35px;
    height: 63px;
    font-size: 0.9rem;
  }

  .lucky__ticket--lg {
    width: 60px;
    height: 105px;
    font-size: 1.5rem;
  }

  /* Positions */
  /* Todos en zona superior-derecha: top 2â€“50%, right 2â€“48% */
  .lucky__item--1  {top:  4%;right:  6%;--rot:  18deg;animation-delay:  0s;animation-name: float;filter: blur(2px);transform: scale(.5) rotate(45deg);}
  .lucky__item--2  {top: 18%;right: 28%;--rot: -35deg;animation-delay: -2s;animation-name: float-alt;filter: blur(2px);}
  .lucky__item--3  {top:  3%;right: 48%;--rot:  72deg;animation-delay: -4s;animation-name: float;filter: blur(3px);}
  .lucky__item--4  {top: 34%;right:  3%;--rot: -12deg;animation-delay: -1s;animation-name: float-alt;filter: blur(1px);}
  .lucky__item--5  { top: 12%; right: 38%; --rot: -58deg; animation-delay: -3s;   animation-name: float;     }
  .lucky__item--6  { top: 44%; right: 18%; --rot:  45deg; animation-delay: -5s;   animation-name: float-alt; }
  .lucky__item--7  { top:  6%; right: 17%; --rot: -22deg; animation-delay: -2.5s; animation-name: float;     }
  .lucky__item--8  { top: 28%; right: 10%; --rot:  80deg; animation-delay: -1.5s; animation-name: float-alt; }

  /* ---- PROCESS SECTION ---- */
  .process {
    position: relative;
    background-color: var(--clr-surface);
    padding-block: var(--sp-16);
    overflow: hidden;
    transition: background-color var(--tr-base);
  }

  .process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-radial-gradient(
      circle at 1px 1px,
      rgba(0,0,0,0.04) 1px,
      transparent 0
    );
    background-size: 32px 32px;
    pointer-events: none;
  }

  .process__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
    text-align: center;
  }

  .process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    margin-top: var(--sp-4);
  }

  .process__card {
    position: relative;
    background-color: var(--clr-surface-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--sp-8);
    text-align: center;
    transition:
      background-color var(--tr-base),
      border-color var(--tr-base),
      transform var(--tr-base),
      box-shadow var(--tr-base);
  }

  .process__card:hover {
    background-color: var(--clr-surface-3);
    border-color: var(--clr-border-2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .process__card-number {
    position: absolute;
    top: var(--sp-2);
    right: var(--sp-3);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--clr-text-2);
    letter-spacing: 0.05em;
    font-family: var(--font-mono);
  }

  .process__card-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    background-color: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    margin-bottom: var(--sp-5);
    color: var(--clr-accent);

    svg {
      width: 90%;
      height: auto;
    }
  }

  .process__card-title {
    font-size: var(--fs-md);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-text);
    margin-bottom: var(--sp-3);
  }

  .process__card-desc {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    color: var(--clr-text-2);
    line-height: 1.7;
  }

  /* ---- PRIZES SECTION ---- */
  .prizes {
    position: relative;
    padding-block: var(--sp-20);
    overflow: hidden;
    background-color: var(--clr-bg);
    transition: background-color var(--tr-base);
  }
  
  .prizes__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
    text-align: center;
  }

  .prizes__total {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-1);
    margin: 0  auto var(--sp-2);
    padding: var(--sp-4) var(--sp-16);
    background: linear-gradient(160deg, #0d0a04 0%, #472f0d 50%, #0d0a04 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: var(--radius-xl);
    box-shadow:
      0 0 0 1px rgba(255, 215, 0, 0.08),
      0 8px 40px rgba(0, 0, 0, 0.5),
      0 0 60px rgba(255, 165, 0, 0.12);
    position: relative;
    overflow: hidden;
    max-width: 100%;
  }

  .prizes__total::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 110%, rgba(255, 180, 0, 0.18) 0%, transparent 60%);
    pointer-events: none;
  }

  .prizes__total-deco {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: .4;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }

  .prizes__total-deco--left {
    left: -70px;
    width: 180px;
    transform: translateY(-50%) rotate(-15deg);
  }

  .prizes__total-deco--right {
    right: -20px;
    width: 75px;
    transform: translateY(-50%) rotate(10deg);
  }

  .prizes__total-label {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 215, 0, 0.6);
    position: relative;
  }

  .prizes__total-amount {
    font-size: var(--fs-4xl);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffd700;
    text-shadow:
      0 0 12px rgba(255, 215, 0, 0.9),
      0 0 40px rgba(255, 165, 0, 0.6),
      0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
  }

  .prizes__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-5);
    margin-top: var(--sp-4);
  }

  .prize__card {
    background: linear-gradient(145deg, #b86935 0%, #ee7600 30%, #bb6918 100%);
    border: 1px solid rgba(245, 166, 35, 0.45);
    border-radius: var(--radius-xl);
    padding: var(--sp-6) var(--sp-2);
    text-align: center;
    transition:
      transform var(--tr-base),
      box-shadow var(--tr-base),
      border-color var(--tr-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.15);
    display: grid;
  }

  .prize__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top center, rgba(245, 166, 35, 0.22) 0%, transparent 65%);
    pointer-events: none;
  }

  .prize__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(245, 166, 35, 0.35), 0 0 0 1px rgba(245, 166, 35, 0.6);
    border-color: rgba(245, 166, 35, 0.7);
  }

  .prize__card--first {
    background: linear-gradient(299deg, #ee7600 0%, #c15d09 50%, #f79a11 100%);
    border-top: 3px solid var(--clr-accent);
    border-color: rgba(245, 166, 35, 0.7);
    box-shadow: 0 6px 30px rgba(245, 166, 35, 0.3);

    .prize__card-rank {
      font-size: var(--fs-md);
      color: #fff;
    }

    .prize__card-amount {
      font-size: clamp(2.4rem, 4.4vw, 3.5rem);
    }
  }

  

  .prize__card--first:hover {
    box-shadow: 0 12px 48px rgba(245, 166, 35, 0.45);
  }

  .prize__card-rank {
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ddd;
    margin-bottom: var(--sp-2);
    font-variant-numeric: tabular-nums;
  }

  .prize__card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    background: rgba(245, 166, 35, 0.4);
    padding: var(--sp-2);
    border: 1px solid rgba(245, 166, 35, 0.3);
  }
  .prize__card-icon svg{
    opacity: .5;
    filter: invert(1);
    width: 100%;
    height: 100%;
  }

  .prize__card--first .prize__card-icon {
    /* background-color: rgba(245, 166, 35, 0.15); */
    /* border: 1px solid rgba(245, 166, 35, 0.3); */
    /* color: var(--clr-accent); */
  }

  .prize__card:not(.prize__card--first) .prize__card-icon {
    /* background-color: var(--clr-surface-3); */
    /* border: 1px solid var(--clr-border); */
    /* color: var(--clr-text-3); */
  }


  .prize__card:not(.prize__card--first) .prize__card-name {
    color: var(--clr-text);
  }

  .prize__card-amount {
    font-size: var(--fs-3xl);
    font-weight: 900;
    color: var(--clr-text);
    letter-spacing: -0.02em;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 165, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: scale(.9);
  }

  .prize__card-desc {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    font-weight: 900;
    color: var(--clr-bg);
    margin-top: -1rem;
    opacity: .7;
}
  /* ---- COUNTDOWN SECTION ---- */
  .countdown {
    position: relative;
    padding-block: var(--sp-16);
    background: linear-gradient(160deg, #e8e8e8 0%, #f1e4c7 40%, #fff5e5 60%, #e8e8e8 100%);
    overflow: hidden;
    transition: background var(--tr-base);
  }

  .countdown::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.1) 0%, transparent 65%);
    pointer-events: none;
  }

  .countdown__container {
    max-width: 900px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
    text-align: center;
  }

  .countdown__date-text {
    font-size: var(--fs-sm);
    color: var(--clr-text-2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: var(--sp-2);
    margin-bottom: var(--sp-10);
  }

  .countdown__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    flex-wrap: wrap;
  }

  .countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
  }

  .countdown__box {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(145deg, #3d2800 0%, #6b3f00 50%, #8a5200 100%);
    border: 1px solid rgba(245, 166, 35, 0.4);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.12), inset 0 1px 0 rgba(255,255,255,0.06);
  }

  .countdown__box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0,0,0,0.25);
  }

  .countdown__number {
    font-size: var(--fs-4xl);
    font-weight: 900;
    color: var(--clr-accent);
    font-variant-numeric: tabular-nums;
    line-height: 1;
    text-shadow: 0 0 20px rgba(245, 166, 35, 0.4);
  }

  .countdown__label {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-text-3);
  }

  .countdown__sep {
    font-size: var(--fs-3xl);
    font-weight: 900;
    color: rgba(245, 166, 35, 0.4);
    margin-bottom: var(--sp-6);
    line-height: 1;
  }

  .countdown__finished {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--clr-accent);
    margin-top: var(--sp-8);
  }

  @media (max-width: 540px) {
    .countdown__box {
      width: 92px;
      height: 92px;
    }
    .countdown__number {
      /* font-size: var(--fs-2xl); */
    }
    .countdown__sep {
      font-size: var(--fs-xl);
    }
    .countdown__sep:nth-child(4){
      display: none
    }
  }

  /* ---- REGISTER SECTION ---- */
  .register {
    background-color: var(--clr-surface);
    padding-block: var(--sp-24);
    transition: background-color var(--tr-base);
  }

  .register__container {
    max-width: 600px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
    text-align: center;
  }

  /* Progress */
  .progress {
    margin-bottom: var(--sp-8);
  }

  .progress__bars {
    display: flex;
    gap: var(--sp-2);
    margin-bottom: var(--sp-5);
  }

  .progress__bar {
    flex: 1;
    height: 4px;
    border-radius: var(--radius-full);
    background-color: var(--clr-surface-3);
    transition: background-color var(--tr-base);
  }

  .progress__bar--active {
    background-color: var(--clr-accent);
  }

  .progress__steps {
    display: flex;
    justify-content: space-between;
    position: relative;
  }

  .progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xs);
    color: var(--clr-text-3);
    transition: color var(--tr-base);
  }

  .progress__step--active {
    color: var(--clr-accent);
  }

  .progress__step--done {
    color: var(--clr-success);
  }

  .progress__step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--clr-border-2);
    background-color: var(--clr-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
      border-color var(--tr-base),
      background-color var(--tr-base);
  }

  .progress__step--active .progress__step-icon {
    border-color: var(--clr-accent);
    background-color: rgba(245, 166, 35, 0.1);
    color: var(--clr-accent);
  }

  .progress__step--done .progress__step-icon {
    border-color: var(--clr-success);
    background-color: rgba(22, 163, 74, 0.1);
    color: var(--clr-success);
  }

  .progress__step-label {
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  /* ---- REGISTER QR SECTION ---- */
  .register-qr {
    padding-block: var(--sp-8);
    transition: background-color var(--tr-base);
  }

  /* Form Card */
  .form-card {
    background-color: var(--clr-surface-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-2xl);
    padding: var(--sp-8);
    text-align: left;
    margin-top: var(--sp-6);
    transition:
      background-color var(--tr-base),
      border-color var(--tr-base);
  }

  .form-step {
    display: none;
  }

  .form-step--active {
    display: block;
    animation: fade-in-up 0.3s ease both;
  }

  .form-step__title {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid var(--clr-border);
  }

  .form-step__title-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background-color: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    flex-shrink: 0;
  }

  .form-group {
    margin-bottom: var(--sp-5);
  }

  .form-label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-text-2);
    margin-bottom: var(--sp-2);
  }

  .form-input,
  .form-select {
    width: 100%;
    padding: var(--sp-3) var(--sp-4);
    background-color: var(--clr-surface-3);
    border: 1px solid var(--clr-border-2);
    border-radius: var(--radius-lg);
    color: var(--clr-text);
    font-size: var(--fs-base);
    transition:
      border-color var(--tr-fast),
      box-shadow var(--tr-fast),
      background-color var(--tr-base);
    -webkit-appearance: none;
    appearance: none;
  }

  .form-input::placeholder {
    color: var(--clr-text-3);
  }

  .form-input:focus,
  .form-select:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px var(--clr-accent-glow);
  }

  .form-select-wrapper {
    position: relative;
  }

  .form-select-wrapper::after {
    content: '';
    position: absolute;
    right: var(--sp-4);
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--clr-text-3);
    pointer-events: none;
  }

  .form-actions {
    display: flex;
    gap: var(--sp-3);
    margin-top: var(--sp-6);
  }

  /* Confirmation step */
  .confirm-state {
    text-align: center;
    padding: var(--sp-8) 0;
  }

  .confirm-state__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(22, 163, 74, 0.15);
    border: 2px solid rgba(22, 163, 74, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    margin-bottom: var(--sp-6);
    color: var(--clr-success);
    animation: pulse-glow-green 2s ease-in-out infinite;
  }

  .confirm-state__title {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: var(--sp-3);
  }

  .confirm-state__folio {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--clr-accent);
    background-color: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: var(--radius-full);
    padding: var(--sp-2) var(--sp-5);
    margin-bottom: var(--sp-4);
    letter-spacing: 0.1em;
  }

  .confirm-state__msg {
    font-size: var(--fs-base);
    color: var(--clr-text-2);
    max-width: 360px;
    margin-inline: auto;
    margin-bottom: var(--sp-8);
    line-height: 1.7;
  }

  /* ---- FOOTER ---- */
  .footer {
    background-color: var(--clr-surface);
    border-top: 1px solid var(--clr-border);
    padding-block: var(--sp-16);
    transition: background-color var(--tr-base);
  }

  .footer__top {
    text-align: center;
    margin-bottom: var(--sp-12);
    padding-bottom: var(--sp-12);
    border-bottom: 1px solid var(--clr-border);
  }

  .footer__tagline {
    font-size: var(--fs-sm);
    color: var(--clr-text-3);
    margin-top: var(--sp-3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-8);
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
    margin-bottom: var(--sp-12);
  }

  .footer__col-title {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-text-3);
    margin-bottom: var(--sp-4);
  }

  .footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
  }

  .footer__link {
    font-size: var(--fs-sm);
    color: var(--clr-text-2);
    transition: color var(--tr-fast);
  }

  .footer__link:hover {
    color: var(--clr-accent);
  }

  .footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
    padding-top: var(--sp-6);
    border-top: 1px solid var(--clr-border);
    font-size: var(--fs-xs);
    color: var(--clr-text-3);
    text-align: center;
  }

  .footer__legal {
    font-size: 0.65rem;
    color: var(--clr-text-3);
    opacity: 0.6;
    letter-spacing: 0.03em;
  }

  .footer__legal-link {
    color: var(--clr-accent);
    text-decoration: none;
  }

  .footer__legal-link:hover {
    text-decoration: underline;
  }

  /* ---- WINNERS PAGE ---- */
  .winners {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
  }

  .winners__hero {
    position: relative;
    /* min-height: 100svh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(ellipse 80% 60% at 50% 40%, #ff8c00 0%, #e05500 40%, #aa1f00 100%);
    overflow: hidden;
    padding-block: var(--sp-12);
  }

  .winners__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle 200px at 20% 20%, rgba(255,255,150,0.15) 0%, transparent 60%),
      radial-gradient(circle 150px at 80% 70%, rgba(255,200,0,0.1) 0%, transparent 60%);
    pointer-events: none;
  }

  .winners__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-inline: var(--sp-6);
  }

  .winners__title {
    font-size: var(--fs-4xl);
    font-weight: 900;
    color: #fff;
    text-shadow:
      0 0 40px rgba(255, 200, 0, 0.6),
      0 0 80px rgba(255, 150, 0, 0.4),
      0 4px 12px rgba(0,0,0,0.5);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: var(--sp-4);
    text-transform: uppercase;
  }

  .winners__title--gold {
    display: block;
    color: #ffd700;
    text-shadow:
      0 0 30px rgba(255, 215, 0, 0.8),
      0 0 60px rgba(255, 165, 0, 0.5),
      0 2px 8px rgba(0,0,0,0.4);
  }

  .winners__subtitle {
    font-size: var(--fs-lg);
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--sp-16);
  }

  .winners__first {
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: var(--radius-2xl);
    padding: var(--sp-10);
    max-width: 500px;
    margin-inline: auto;
    margin-bottom: var(--sp-8);
    position: relative;
    overflow: hidden;
  }

  .winners__first::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, transparent 60%);
    pointer-events: none;
  }

  .winners__first-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #ffd700;
    text-transform: uppercase;
    margin-bottom: var(--sp-4);
  }

  .winners__first-amount {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    color: #ffd700;
    text-shadow:
      0 0 20px rgba(255, 215, 0, 0.8),
      0 0 40px rgba(255, 165, 0, 0.5),
      0 2px 4px rgba(0,0,0,0.5);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: var(--sp-4);
  }

  .winners__first-name {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--sp-2);
  }

  .winners__first-folio {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.08em;
  }

  .winners__others {
    display: flex;
    gap: var(--sp-4);
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin-inline: auto;
  }

  .winners__card {
    background-color: rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-xl);
    padding: var(--sp-6);
    min-width: 200px;
    flex: 1;
    text-align: center;
    transition: transform var(--tr-base), box-shadow var(--tr-base);
  }

  .winners__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }

  .winners__card-rank {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--sp-2);
  }

  .winners__card-amount {
    font-size: var(--fs-2xl);
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255,215,0,0.6);
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-2);
  }

  .winners__card-name {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--sp-1);
  }

  .winners__card-folio {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.5);
  }

  /* Confetti particles */
  .confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .confetti__piece {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    animation: confetti-fall linear infinite;
  }

  .confetti__piece:nth-child(1)  { left: 5%;  top: -10px; background: #ffd700; animation-duration: 3s; animation-delay: 0s;    width: 10px; height: 10px; }
  .confetti__piece:nth-child(2)  { left: 15%; top: -10px; background: #ff6b6b; animation-duration: 4s; animation-delay: 0.5s;  width: 6px;  height: 6px;  }
  .confetti__piece:nth-child(3)  { left: 25%; top: -10px; background: #4ecdc4; animation-duration: 3.5s; animation-delay: 1s;  width: 8px;  height: 8px;  }
  .confetti__piece:nth-child(4)  { left: 35%; top: -10px; background: #ffd700; animation-duration: 2.8s; animation-delay: 0.3s; width: 12px; height: 12px; }
  .confetti__piece:nth-child(5)  { left: 45%; top: -10px; background: #fff;    animation-duration: 4.2s; animation-delay: 0.8s; width: 6px;  height: 6px;  }
  .confetti__piece:nth-child(6)  { left: 55%; top: -10px; background: #ff6b6b; animation-duration: 3.2s; animation-delay: 1.5s; width: 10px; height: 10px; }
  .confetti__piece:nth-child(7)  { left: 65%; top: -10px; background: #ffd700; animation-duration: 3.8s; animation-delay: 0.2s; width: 8px;  height: 8px;  }
  .confetti__piece:nth-child(8)  { left: 75%; top: -10px; background: #4ecdc4; animation-duration: 4.5s; animation-delay: 1.2s; width: 6px;  height: 6px;  }
  .confetti__piece:nth-child(9)  { left: 85%; top: -10px; background: #fff;    animation-duration: 3.1s; animation-delay: 0.7s; width: 10px; height: 10px; }
  .confetti__piece:nth-child(10) { left: 92%; top: -10px; background: #ffd700; animation-duration: 3.6s; animation-delay: 0.4s; width: 8px;  height: 8px;  }
  .confetti__piece:nth-child(11) { left: 8%;  top: -10px; background: #ff6b6b; animation-duration: 4.1s; animation-delay: 1.8s; width: 6px;  height: 6px;  }
  .confetti__piece:nth-child(12) { left: 50%; top: -10px; background: #ffd700; animation-duration: 2.6s; animation-delay: 2.1s; width: 12px; height: 12px; }

  /* ---- INNER PAGE ---- */
  .inner-page {
    /* padding-top: 100px; */
    min-height: 100svh;
    background-color: var(--clr-bg);
    transition: background-color var(--tr-base);
  }

  .inner-page__hero {
    padding-block: var(--sp-10);
    background-color: var(--clr-surface);
    border-bottom: 1px solid var(--clr-border);
    text-align: center;
    transition: background-color var(--tr-base);
  }

  .inner-page__title {
    font-size: var(--fs-3xl);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--clr-text);
    /* margin-bottom: var(--sp-3); */
  }

  .inner-page__subtitle {
    font-size: var(--fs-base);
    color: var(--clr-text-2);
  }

  .inner-page__content {
    max-width: 800px;
    margin-inline: auto;
    padding: var(--sp-16) var(--sp-6);
  }

  .legal-section {
    margin-bottom: var(--sp-10);
  }

  .legal-section h2{
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--clr-accent);
    margin-bottom: var(--sp-4);
    padding-bottom: var(--sp-3);
    border-bottom: 1px solid var(--clr-border);
  }

  .legal-section p {
    font-size: var(--fs-base);
    color: var(--clr-text-2);
    line-height: 1.8;
    margin-bottom: var(--sp-4);
  }

  .legal-section a {
    text-decoration: underline;
    color: var(--clr-accent);
  }

  .legal-section ul {
    list-style: disc;
    padding-left: var(--sp-6);
    margin-bottom: var(--sp-4);
  }

  .legal-section li {
    font-size: var(--fs-base);
    color: var(--clr-text-2);
    line-height: 1.8;
    margin-bottom: var(--sp-2);
  }

  /* ---- WINNERS SECTION (in page) ---- */
  .winners-section {
    background-color: var(--clr-bg);
    padding-block: var(--sp-24);
    transition: background-color var(--tr-base);
  }

  .winners-section__container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
    text-align: center;
  }

  .winners-table-wrap {
    overflow-x: auto;
    margin-top: var(--sp-8);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(245, 166, 35, 0.2);
  }

  .winners-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-sm);
  }

  .winners-table thead tr {
    background: linear-gradient(90deg, rgba(245, 166, 35, 0.15), rgba(245, 166, 35, 0.08));
    border-bottom: 1px solid rgba(245, 166, 35, 0.3);
  }

  .winners-table th {
    padding: var(--sp-4) var(--sp-6);
    text-align: left;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-accent);
  }

  .winners-table td {
    padding: var(--sp-4) var(--sp-6);
    color: var(--clr-text);
    border-bottom: 1px solid var(--clr-border);
    text-align: left;
  }

  .winners-table tbody tr:last-child td {
    border-bottom: none;
  }

  .winners-table tbody tr:hover {
    background-color: rgba(245, 166, 35, 0.05);
  }

  .winners-table tbody tr:first-child td {
    font-weight: 700;
    color: var(--clr-accent);
  }

  /* ---- GANADORES PENDIENTE ---- */
  .winners-pending__date-card {
    max-width: 460px;
  }

  .winners-pending__date-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }

  .winners-pending__hint {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.7);
    margin-top: var(--sp-3);
    line-height: 1.6;
  }

  /* ---- QR NO-CAMERA MODAL ---- */
  .qr-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-4);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--tr-base);
  }

  .qr-modal-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .qr-modal {
    background-color: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    max-width: 560px;
    width: 100%;
    max-height: 90svh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform var(--tr-base);
  }

  .qr-modal-backdrop.is-open .qr-modal {
    transform: translateY(0);
  }

  .qr-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--sp-4);
    padding: var(--sp-6) var(--sp-6) 0;
  }

  .qr-modal__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    flex-shrink: 0;
  }

  .qr-modal__header-text {
    flex: 1;
  }

  .qr-modal__title {
    font-size: var(--fs-lg);
    font-weight: 800;
    color: var(--clr-text);
    letter-spacing: -0.01em;
    margin-bottom: var(--sp-1);
  }

  .qr-modal__reason {
    font-size: var(--fs-sm);
    color: #ef4444;
    font-weight: 500;
  }

  .qr-modal__close {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border-2);
    background-color: var(--clr-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-3);
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color var(--tr-fast), color var(--tr-fast);
  }

  .qr-modal__close:hover {
    background-color: var(--clr-surface-3);
    color: var(--clr-text);
  }

  .qr-modal__divider {
    height: 1px;
    background-color: var(--clr-border);
    margin: var(--sp-5) var(--sp-6);
  }

  .qr-modal__steps-label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-text-3);
    text-align: center;
    margin-bottom: var(--sp-4);
    padding-inline: var(--sp-6);
  }

  .qr-modal__steps {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    padding: 0 var(--sp-6);
  }

  .qr-modal__step {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-4);
    background-color: var(--clr-surface-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--sp-4) var(--sp-5);
    transition: border-color var(--tr-fast);
  }

  .qr-modal__step-num {
    font-size: var(--fs-xs);
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--clr-text-3);
    letter-spacing: 0.05em;
    flex-shrink: 0;
    padding-top: 2px;
  }

  .qr-modal__step-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background-color: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    flex-shrink: 0;
  }

  .qr-modal__step-body {
    flex: 1;
  }

  .qr-modal__step-title {
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-text);
    margin-bottom: var(--sp-1);
  }

  .qr-modal__step-desc {
    font-size: var(--fs-xs);
    color: var(--clr-text-2);
    line-height: 1.6;
    font-family: var(--font-mono);
  }

  .qr-modal__footer {
    padding: var(--sp-5) var(--sp-6) var(--sp-6);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
  }

  /* ---- QR SCANNER ---- */
  .qr-scanner-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -1rem;
  }

  .qr-scanner-card {
    background-color: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    text-align: center;
    padding: var(--sp-8);
    margin: 0 var(--sp-4);
  }

  .qr-camera-wrap {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto var(--sp-5);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 0 0 4px var(--clr-accent), 0 0 40px var(--clr-accent-glow);
    margin-top: var(--sp-12);
  }

  .qr-camera-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .qr-camera-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .qr-camera-frame {
    position: relative;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 0 9999px rgba(0,0,0,0.45);
  }

  .qr-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--clr-accent);
    border-style: solid;
  }

  .qr-corner.tl { top: -1px; left: -1px; border-width: 3px 0 0 3px; border-radius: 4px 0 0 0; }
  .qr-corner.tr { top: -1px; right: -1px; border-width: 3px 3px 0 0; border-radius: 0 4px 0 0; }
  .qr-corner.bl { bottom: -1px; left: -1px; border-width: 0 0 3px 3px; border-radius: 0 0 0 4px; }
  .qr-corner.br { bottom: -1px; right: -1px; border-width: 0 3px 3px 0; border-radius: 0 0 4px 0; }

  .qr-scanline {
    position: absolute;
    width: 160px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background: var(--clr-accent);
    box-shadow: 0 0 8px var(--clr-accent);
    animation: qr-scanline 2s linear infinite;
  }

  .fuel-gauge {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    max-width: 260px;
    margin: 0 auto var(--sp-4);
    min-height: 40px;
  }

  .fuel-gauge__icon {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .fuel-gauge__icon svg { width: 100%; height: 100%; }

  .fuel-gauge__drops {
    position: absolute;
    bottom: -4px;
    right: 2px;
    display: flex;
    gap: 4px;
  }

  .fuel-gauge__drop {
    display: block;
    width: 5px;
    height: 7px;
    background: var(--clr-accent);
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    opacity: 0;
  }

  .fuel-gauge__bar {
    flex: 1;
    height: 18px;
    background: var(--clr-surface-3);
    border-radius: var(--radius-full);
    border: 2px solid var(--clr-accent);
    overflow: hidden;
    position: relative;
  }

  .fuel-gauge__fill {
    height: 100%;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--clr-accent), #ffcc00, var(--clr-accent));
    background-size: 200% 100%;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.4s ease, background 0.4s ease;
  }

  .fuel-gauge--idle .fuel-gauge__fill { transform: scaleX(0); }
  .fuel-gauge--idle .fuel-gauge__drop { animation: none; opacity: 0; }

  .fuel-gauge--scanning .fuel-gauge__fill {
    animation: fuel-fill 3s ease-in-out infinite, fuel-shimmer 1.5s linear infinite;
  }
  .fuel-gauge--scanning .fuel-gauge__drop { animation: fuel-drip 1.2s ease-in infinite; }
  .fuel-gauge--scanning .fuel-gauge__drop:nth-child(2) { animation-delay: 0.5s; }

  .fuel-gauge--success .fuel-gauge__fill {
    transform: scaleX(1);
    animation: fuel-complete 0.5s ease-out forwards;
    background: linear-gradient(90deg, var(--clr-success), #22c55e, var(--clr-success));
    background-size: 200% 100%;
  }
  .fuel-gauge--success .fuel-gauge__bar {
    border-color: var(--clr-success);
    box-shadow: 0 0 12px var(--clr-success-glow);
  }
  .fuel-gauge--success .fuel-gauge__drop { animation: none; opacity: 0; }
  .fuel-gauge--success .fuel-gauge__icon svg { filter: hue-rotate(100deg) saturate(1.5); }

  .fuel-gauge--error .fuel-gauge__fill { transform: scaleX(0); transition: transform 0.3s ease; }
  .fuel-gauge--error .fuel-gauge__bar { border-color: #ef4444; }
  .fuel-gauge--error .fuel-gauge__icon { animation: nozzle-shake 0.4s ease; }
  .fuel-gauge--error .fuel-gauge__drop { animation: none; opacity: 0; }

  .qr-status {
    font-size: var(--fs-sm);
    color: var(--clr-text-2);
    min-height: 22px;
    margin-bottom: var(--sp-4);
  }
  .qr-status--error   { color: #ef4444; }
  .qr-status--success { color: var(--clr-success); }

  .qr-btn-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
  }

  .qr-camera-wrap.hidden { display: none; }

  .qr-redirect-msg { display: none; padding: var(--sp-5) 0; }
  .qr-redirect-msg.active { display: block; }
  .qr-redirect-msg p {
    font-size: var(--fs-base);
    color: var(--clr-success);
    font-weight: 600;
    margin-bottom: var(--sp-2);
  }
  .qr-redirect-msg a {
    color: var(--clr-accent);
    word-break: break-all;
    font-size: var(--fs-sm);
  }

}

/* ============================================
   ANIMATIONS
   ============================================ */
@layer animations {

  @keyframes float {
    0%, 100% { transform: translateY(0)     rotate(var(--rot, 0deg)); }
    50%       { transform: translateY(-12px) rotate(calc(var(--rot, 0deg) + 5deg)); }
  }

  @keyframes float-alt {
    0%, 100% { transform: translateY(-6px) rotate(calc(var(--rot, 0deg) - 3deg)); }
    50%       { transform: translateY(6px)  rotate(calc(var(--rot, 0deg) + 3deg)); }
  }

  @keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }

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

  @keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 4px var(--clr-success-glow); }
    50%       { box-shadow: 0 0 12px var(--clr-success-glow), 0 0 24px var(--clr-success-glow); }
  }

  @keyframes pulse-glow-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.3); }
    50%       { box-shadow: 0 0 0 12px rgba(22, 163, 74, 0); }
  }

  @keyframes fade-in-up {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes confetti-fall {
    0%   { transform: translateY(-10px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
  }

  /* Scroll-triggered animations */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

  .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
  .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
  .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

  @keyframes qr-scanline {
    0%   { top: 10%; }
    50%  { top: 85%; }
    100% { top: 10%; }
  }

  @keyframes fuel-fill {
    0%, 100% { transform: scaleX(0.05); }
    50%      { transform: scaleX(0.95); }
  }

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

  @keyframes fuel-drip {
    0%   { transform: translateY(0); opacity: 1; }
    80%  { opacity: 0.6; }
    100% { transform: translateY(22px); opacity: 0; }
  }

  @keyframes nozzle-shake {
    0%, 100% { transform: translateX(0); }
    20%      { transform: translateX(-3px); }
    40%      { transform: translateX(3px); }
    60%      { transform: translateX(-2px); }
    80%      { transform: translateX(2px); }
  }

  @keyframes fuel-complete {
    0%   { transform: scaleX(0.5); }
    100% { transform: scaleX(1); }
  }

  @keyframes pop-in {
    0%   { transform: scale(0.4) rotate(-8deg); opacity: 0; }
    65%  { transform: scale(1.12) rotate(3deg);  opacity: 1; }
    85%  { transform: scale(0.96) rotate(-1deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg);     opacity: 1; }
  }

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

  @keyframes sparkle-pop {
    0%, 100% { transform: scale(0) rotate(0deg);     opacity: 0; }
    25%       { transform: scale(1.4) rotate(45deg);  opacity: 1; }
    60%       { transform: scale(0.8) rotate(100deg); opacity: 0.55; }
  }

  @keyframes btn-bounce {
    0%, 100% {
      transform: translateY(0) scale(1);
      box-shadow: var(--shadow-md);
    }
    50% {
      transform: translateY(-6px) scale(1.04);
      box-shadow: 0 16px 36px rgba(238, 118, 0, 0.48);
    }
  }

  @keyframes hero-glow-pulse {
    0%, 100% { opacity: 0.55; }
    50%       { opacity: 1; }
  }

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

  /* Confetti lateral hacia el centro */
  @keyframes confetti-fly {
    0%   { transform: translate(0, 0) rotate(0deg);                        opacity: var(--co, 0.9); }
    12%  { opacity: var(--co, 0.9); }
    88%  { opacity: calc(var(--co, 0.9) * 0.35); }
    100% { transform: translate(var(--cx), var(--cy)) rotate(var(--cr));   opacity: 0; }
  }

  /* Crossfade alterno cada 6s â€” ciclo total 12s */
  @keyframes people-crossfade {
    0%   { opacity: 1; }   /* visible */
    42%  { opacity: 1; }   /* empieza a desvanecerse en ~5s */
    50%  { opacity: 0; }   /* totalmente oculta en 6s */
    92%  { opacity: 0; }   /* empieza a aparecer en ~11s */
    100% { opacity: 1; }   /* totalmente visible en 12s â†’ reinicia */
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .prizes__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Hero â€” tablet */
  .hero__content {
    width: 100%;
    padding-inline: var(--sp-8);
  }

  .hero__info {
    max-width: 50%;
    padding: var(--sp-12) 0;
  }

  .hero__people {
    width: 60%;
    max-width: 680px;
  }

  /* Lucky items â€” reducir un poco en tablet */
  .lucky__item--3,
  .lucky__item--5 {
    opacity: 0.45;
  }

  .lucky__clover--lg { width: 80px;  height: 80px; }
  .lucky__ticket--lg { width: 50px;  height: 88px; }
}

/* Mobile */
@media (max-width: 768px) {
  .hero__logo {}
  
  .header__container {
    padding: var(--sp-3) var(--sp-4);
    gap: var(--sp-2);
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--clr-surface-3);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform var(
    --tr-base);
    z-index: 999;
    height: 250px;
    box-shadow: 0 70px 100px rgba(0,0,0,.34);
  }

  .nav--open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: var(--sp-6);
    font-size: var(--fs-xl);
  }

  .nav__link {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--clr-text-2);
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .process__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .prizes__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--sp-2);
    text-align: center;
  }

  .winners__others {
    flex-direction: column;
    max-width: 400px;
  }

  .form-card {
    padding: var(--sp-5);
  }

  .form-actions {
    flex-direction: column;
  }

  .section-title {
    font-size: var(--fs-2xl);
  }

  /* Hero mobile â€” layout apilado, texto centrado arriba, personas abajo */
  .hero {
    flex-direction: column;
    padding: 0 0 250px;
  }

  .hero__content {
    width: 100%;
    padding-inline: var(--sp-5);
    z-index: 3;
    display: flex;
    justify-content: center;
  }

  .hero__info {
    max-width: 100%;
    text-align: center;
    padding: var(--sp-16) var(--sp-2) var(--sp-48);
  }

  .hero__logo {
    margin: auto!important;
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  /* Personas â€” ocupa ancho completo, anclada al fondo */
  .hero__people {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 8;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .hero__people img {
    object-position: bottom center;
  }

  /* Lucky â€” solo 3 elementos en esquina superior-derecha, mÃ¡s pequeÃ±os */
  .lucky__item--3,
  .lucky__item--5,
  .lucky__item--6,
  .lucky__item--8 {
    display: none;
  }

  .lucky__item {
    opacity: 0.45;
  }

  .lucky__clover--lg { width: 52px; height: 52px; }
  .lucky__clover--sm { width: 34px; height: 34px; }
  .lucky__ticket--lg { width: 36px; height: 64px; }
  .lucky__ticket--sm { width: 24px; height: 42px; }

  /* Sparkles â€” ocultar los que caen en zona de texto */
  .hero__spark[style*="left:"] {
    display: none;
  }

  .qr-camera-wrap {
    width: 240px;
    height: 240px;
  }

  .qr-camera-frame {
    width: 150px;
    height: 150px;
  }

  .qr-scanline { width: 130px; }
  .fuel-gauge  { max-width: 220px; }
  .fuel-gauge__icon { width: 28px; height: 28px; }
  .fuel-gauge__bar  { height: 14px; }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .winners__first {
    padding: var(--sp-6);
  }

  /* Hero â€” mÃ³vil pequeÃ±o */
  .hero__info {
    padding-top: var(--sp-4);
    padding-bottom: var(--sp-40);
  }

  .hero__people {
    aspect-ratio: 4 / 3;
    width: 120%!important;
    left: -15%;
  }

  /* Ocultar todos los lucky en pantallas muy pequeÃ±as */
  .lucky {
    display: none;
  }
}

/* ============================================
   FORM ERROR WordPress theme addition
   ============================================ */
.form-error {
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-md);
  color: #ef4444;
  font-size: var(--fs-sm);
}

/* ============================================
   HERO â€” CELEBRATION ENHANCEMENTS
   ============================================ */

/* Luminous white glow behind hero content */
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 68% 50% at 50% 38%, rgba(255, 255, 255, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 42% 34% at 15% 78%, rgba(255, 200, 80, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 42% 34% at 85% 78%, rgba(255, 200, 80, 0.18) 0%, transparent 55%);
  animation: hero-glow-pulse 4s ease-in-out infinite;
}

/* Celebrating people illustration at the bottom */
.hero__people {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  z-index: 1;
  /* Altura fija para que los imgs absolute tengan referencia */
  aspect-ratio: 16 / 9;
  max-width: 1000px;
}

.hero__gradient-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 23%;
  background: linear-gradient(to top, var(--clr-accent), transparent);
  z-index: 2;
}

.hero__people img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}

/* Imagen 1 â€” empieza visible */
.hero__people img:first-child {
  animation: people-crossfade 12s ease-in-out infinite;
}

/* Imagen 2 â€” empieza oculta, desfasada 6s */
.hero__people img:last-child {
  animation: people-crossfade 12s ease-in-out infinite;
  animation-delay: -6s;
}

/* Confetti lateral */
.hero-confetti-piece {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  will-change: transform, opacity;
  transform-origin: center center;
}

/* Sparkle star elements */
.hero__spark {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  animation: sparkle-pop var(--sparkle-dur, 2.4s) ease-in-out infinite;
  animation-delay: var(--sparkle-delay, 0s);
}

/* Logo pop-in entrance */
.hero__logo {
  animation: pop-in 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.25s both !important;
  margin: 0; /* izquierda en desktop */
}

/* Shimmer on accent title â€” white/gold palette for orange background */
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .hero__title--accent {
    background: linear-gradient(
      90deg,
      #ffe082 0%,
      #ffffff 28%,
      #ffd740 52%,
      #ffffff 76%,
      #ffe082 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
    animation: shimmer-text 3.5s linear infinite;
    display: block;
  }
}

/* CTA button bounce in hero */
.hero .btn--primary {
  animation: btn-bounce 2.8s ease-in-out infinite;
  animation-delay: 2s;
}

/* Lucky items opacidad desktop */
@media (min-width: 769px) {
  .lucky__item {
    opacity: 0.62;
  }
}

/* ============================================
   LUCKY â€” WINNERS BOTTOM-RIGHT
   ============================================ */
.lucky--winners-bottom .hero__spark {
  position: absolute;
}

/* Espejo del patrÃ³n top-right pero anclado al fondo */
.lucky__item--w1 { bottom: 22%; left:  5%; --rot:  25deg; animation-delay:  0s;    animation-name: float;     opacity: 0.62; }
.lucky__item--w2 { bottom: 38%; left: 26%; --rot: -40deg; animation-delay: -2.2s;  animation-name: float-alt; opacity: 0.62; }
.lucky__item--w3 { bottom: 10%; left: 46%; --rot:  68deg; animation-delay: -4.1s;  animation-name: float;     opacity: 0.62; }
.lucky__item--w4 { bottom: 52%; left:  4%; --rot: -15deg; animation-delay: -1.3s;  animation-name: float-alt; opacity: 0.62; }
.lucky__item--w5 {bottom:  8%;left: 14%;--rot: -55deg;animation-delay: -3.4s;animation-name: float;opacity: 0.4;filter: blur(3px);}
.lucky__item--w6 {bottom: 62%;left: 18%;--rot:  50deg;animation-delay: -5.2s;animation-name: float-alt;opacity: 0.62;filter: blur(2px);}
.lucky__item--w7 { bottom: 28%; left: 38%; --rot: -28deg; animation-delay: -2.8s;  animation-name: float;     opacity: 0.62; }

@media (max-width: 768px) {
  .lucky--winners-bottom {
    display: none;
  }
}
