
    :root {
      --bg-main: #050505;
      --bg-card: #101010;
      --bg-card-soft: #151515;
      --gold: #741a1a;
      --gold-soft: #8b3030;
      --text-main: #ffffff;
      --text-muted: #b3b3b3;
      --accent-red: #c9182b;
      --border-soft: rgba(255,255,255,0.08);
      --shadow-strong: 0 24px 70px rgba(0,0,0,0.9);
      --shadow-soft: 0 18px 50px rgba(0,0,0,0.7);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: radial-gradient(circle at top, #181818 0, #050505 45%, #000 100%);
      color: var(--text-main);
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }


    /* Utilidades genéricas */
    .flex-center-gap {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .self-end {
      align-self: flex-end;
    }

    .btn-small {
      font-size: 12px;
      padding-inline: 18px;
    }

    /* ====================== */
    /* HEADER - STICKY CLEAN  */
    /* ====================== */

    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(14px);
      background: rgba(0, 0, 0, 0.7);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      padding: 10px 0;
    }

    .header-inner {
      width: 90%;
      max-width: 1500px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    /* LOGO */
    .logo-main {
      width: 250px;
      height: auto;
      margin-left: 100px; 
    }

    /* NAV MENU */
    .main-nav {
      display: flex;
      gap: 32px;
      flex: 1;
      justify-content: center;
    }

    .main-nav a {
      color: #d6d6d6;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: .2s ease;
    }

    .main-nav a:hover {
      color: #ffffff;
    }

    /* BOTÓN HEADER ROJO VINO PREMIUM */

    .btn-wine {
      padding: 12px 26px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      background: linear-gradient(135deg, #8a0f22 0%, #580814 100%);
      color: white;
      transition: .25s ease;
      box-shadow:
        0 0 12px rgba(255, 0, 50, 0.35),
        inset 0 0 4px rgba(255, 60, 90, 0.2);
      white-space: nowrap;
    }

    .btn-wine:hover {
      transform: translateY(-2px);
      box-shadow:
        0 0 18px rgba(255, 0, 50, 0.55),
        inset 0 0 6px rgba(255, 60, 90, 0.35);
    }

    .btn-wine:active {
      transform: scale(0.97);
    }

    /* RESPONSIVE HEADER */
    @media (max-width: 900px) {
      .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }

      .main-nav {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 18px;
      }

      .logo-main {
        width: 180px;
      }
    }

    @media (max-width: 600px) {
      .main-nav {
        font-size: 13px;
      }
    }

    /* =================== HERO =================== */

    .hero {
      padding: 70px 0 60px;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
      }
    }

    .hero-title {
      font-size: clamp(34px, 4vw, 52px);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.03;
      margin-bottom: 12px;
    }

    .hero-title span {
      background: linear-gradient(135deg, #ffeded, #c9182b);
      background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      margin-top: 14px;
      font-size: 15px;
      color: var(--text-muted);
      max-width: 460px;
    }

    .hero-ctas {
      margin-top: 28px;
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-card {
      width: 100%;
      max-width: 590px;
      border-radius: 25px;
      background: radial-gradient(circle at top left, #202020 0, #0c0c0c 30%, #050505 100%);
      box-shadow: var(--shadow-strong);
      padding: 14px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .hero-image-frame {
      border-radius: 22px;
      overflow: hidden;
      cursor: pointer;
      background: #000;
      position: relative;
    }

    .hero-image-frame::after {
      content: "Ver galería";
      position: absolute;
      right: 16px;
      bottom: 16px;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 600;
      background: rgba(0,0,0,0.65);
      border: 1px solid rgba(255,255,255,0.25);
      backdrop-filter: blur(8px);
    }

    .hero-card-footer {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-muted);
      align-items: center;
      padding-top: 4px;
    }

    .hero-car-info span {
      font-size: 14px;
      font-weight: 700;
    }

    /* BOTONES PRINCIPALES HERO */

    .btn-wine2 {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 34px;
      border-radius: 999px;
      border: none;
      font-size: 15px;
      font-weight: 700;
      color: #f5f1ee;
      background: linear-gradient(135deg, #0f0204 5%, #490713 95%);
      cursor: pointer;
      box-shadow: 0 0 20px rgba(133, 12, 34, 0.45);
      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
    }

    .btn-wine2:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 30px rgba(117, 18, 36, 0.65);
      background: linear-gradient(135deg, #b21835 0%, #4b121d 100%);
    }

    .btn-wine2:active {
      transform: scale(0.97);
    }

    .btn-wine-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 34px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 700;
      color: #f0e4df;
      border: 2px solid #810c23;
      background: transparent;
      cursor: pointer;
      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
    }

    .btn-wine-outline:hover {
      background: rgba(182, 16, 46, 0.18);
      transform: translateY(-3px);
      box-shadow: 0 0 20px rgba(178, 24, 53, 0.35);
    }

    .btn-wine-outline:active {
      transform: scale(0.97);
    }

    /* =================== SECCIONES GENERALES =================== */

    .section {
      padding: 52px 0;
      border-top: 1px solid rgba(255,255,255,0.03);
    }

    .section-header {
      margin-bottom: 24px;
    }

    .section-title {
      font-size: 22px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .section-subtitle {
      font-size: 13px;
      color: var(--text-muted);
      max-width: 360px;
      margin-top: 6px;
    }

    .card {
      background: var(--bg-card);
      border-radius: 16px;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-strong);
      padding: 20px 22px;
    }

    /* ===== PROGRESO SORTEO ACTUAL ===== */

    .progress-card {
      background: var(--bg-card);
      border-radius: 18px;
      padding: 26px;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(255,255,255,0.06);
    }

    .progress-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }

    .progress-label {
      font-size: 14px;
      color: var(--text-muted);
    }

    .progress-label strong {
      color: #ffffff;
    }

    .progress-badge {
      background: rgba(0,0,0,0.4);
      border: 1px solid rgba(255,255,255,0.15);
      color: var(--text-muted);
      font-size: 11px;
      padding: 6px 12px;
      border-radius: 999px;
    }

    .progress-bar-bg {
      width: 100%;
      height: 10px;
      background: #1d1d1d;
      border-radius: 999px;
      margin: 18px 0 16px;
      overflow: hidden;
    }

    .progress-bar-fill {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg,#c9182b,#ff5473);
      transition: width 0.5s ease;
    }

    .progress-numbers {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 18px;
      margin-top: 20px;
    }

    .progress-num-title {
      font-size: 11px;
      color: var(--text-muted);
      text-transform: uppercase;
      margin-bottom: 4px;
      letter-spacing: 0.05em;
    }

    .progress-num-value {
      font-size: 18px;
      font-weight: 700;
    }

    .progress-footer {
      margin-top: 18px;
      font-size: 11px;
      color: var(--text-muted);
    }

    @media (max-width: 700px) {
      .progress-numbers {
        grid-template-columns: repeat(2,1fr);
      }
    }

    /* =================== ESPECIFICACIONES =================== */

    .specs-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    @media (max-width: 900px) {
      .specs-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 600px) {
      .specs-grid {
        grid-template-columns: 1fr;
      }
    }

    .spec-card {
      background: var(--bg-card-soft);
      padding: 18px;
      border-radius: 14px;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
    }

    .spec-title {
      font-weight: 700;
      margin-bottom: 6px;
    }

    .spec-list {
      color: var(--text-muted);
      font-size: 12px;
      list-style: none;
    }

    .spec-list li + li {
      margin-top: 4px;
    }

    /* =================== HOW IT WORKS =================== */
    .how-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 24px;
    }

    @media (max-width: 1000px) {
      .how-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .how-grid {
        grid-template-columns: 1fr;
      }
    }

    .how-card {
      background: var(--bg-card);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 26px 20px;
      box-shadow: var(--shadow-strong);
      transition: all 0.25s ease;
    }

    .how-card:hover {
      transform: translateY(-4px);
      border-color: var(--gold);
      box-shadow: 0 32px 90px rgba(0,0,0,0.95);
    }

    .how-icon {
      font-size: 32px;
      margin-bottom: 14px;
    }

    .how-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .how-text {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* =================== BOLETOS =================== */

    .tickets-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    @media (max-width: 900px) {
      .tickets-layout {
        grid-template-columns: 1fr;
      }
    }

    .tickets-card {
      background: var(--bg-card);
      padding: 20px;
      border-radius: 16px;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-strong);
    }

    .tickets-emoji {
      width: 42px;
      height: 42px;
      background: #1b1b1b;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
    }

    .tickets-card-title {
      font-weight: 700;
      font-size: 14px;
    }

    .tickets-card-sub {
      color: var(--text-muted);
      font-size: 12px;
      margin-top: 2px;
    }

    .form-row {
      margin-top: 14px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .field {
      flex: 1;
      min-width: 140px;
      font-size: 11px;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .field label {
      letter-spacing: 0.05em;
    }

    .field input,
    .field select {
      width: 100%;
      margin-top: 4px;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid #333;
      background: #000;
      color: #fff;
      font-size: 13px;
    }

    .field input::placeholder {
      color: #777;
    }

    .tickets-btn {
      padding: 10px 20px;
      border-radius: 999px;
      font-weight: 700;
      border: 2px solid transparent;
      cursor: pointer;
      transition: 0.2s;
      font-size: 12px;
    }

    .tickets-btn-primary {
      background: var(--gold);
      border-color: var(--gold);
      color: #000;
    }

    .tickets-btn-primary:hover {
      background: var(--gold-soft);
      border-color: var(--gold-soft);
    }

    .tickets-btn-secondary {
      background: transparent;
      border-color: var(--gold);
      color: var(--gold);
    }

    .tickets-btn-secondary:hover {
      background: var(--gold);
      color: #000;
    }

    .tickets-info-text {
      margin-top: 8px;
      font-size: 11px;
      color: var(--text-muted);
    }

    .selected-preview {
      margin-top: 14px;
      border-radius: 14px;
      padding: 10px;
      background: #151515;
      border: 1px dashed rgba(255,255,255,0.25);
      font-size: 12px;
    }

    .selected-badges {
      margin-top: 6px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .ticket-pill {
      border-radius: 999px;
      padding: 6px 12px;
      background: #1a1a1a;
      border: 1px solid rgba(255,255,255,0.25);
      color: #fff;
      font-size: 12px;
      cursor: pointer;
      transition: 0.2s;
    }

    .ticket-pill:hover {
      background: #c9182b;
      border-color: #c9182b;
      color: #fff;
      transform: translateY(-1px);
    }

    /* =================== MODAL SELECT ESTADOS =================== */
    .modal-select {
      width: 100%;
      background: #111;
      border: 1px solid rgba(255,255,255,0.08);
      color: var(--text-main);
      padding: 12px 14px;
      border-radius: 10px;
      font-size: 14px;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      outline: none;
      cursor: pointer;
      transition: border-color .2s ease;
    }

    .modal-select:hover,
    .modal-select:focus {
      border-color: var(--gold);
    }

    .modal-select-wrapper {
      position: relative;
    }

    .modal-select-wrapper::after {
      content: '▾';
      font-size: 14px;
      color: var(--text-muted);
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
    }

    /* =================== TESTIMONIOS =================== */

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
      margin-top: 24px;
    }

    @media (max-width: 1000px) {
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
    }

    .testimonial-card {
      background: var(--bg-card);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 24px 20px;
      border-radius: 16px;
      box-shadow: var(--shadow-strong);
      transition: 0.25s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      border-color: var(--gold);
      box-shadow: 0 35px 90px rgba(0,0,0,0.95);
    }

    .testimonial-text {
      font-size: 14px;
      color: var(--text-main);
      line-height: 1.5;
      margin-bottom: 18px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #1a1a1a;
      border: 1px solid rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--gold);
      font-size: 16px;
    }

    .testimonial-name {
      font-weight: 700;
      font-size: 14px;
    }

    .testimonial-meta {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* =================== FAQ =================== */

    .faq-container {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 24px;
    }

    .faq-item {
      background: var(--bg-card);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color 0.25s ease;
    }

    .faq-item.open {
      border-color: var(--gold);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      color: var(--text-main);
      padding: 18px 20px;
      text-align: left;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-icon {
      font-size: 20px;
      color: var(--gold);
      transition: transform 0.25s ease;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: var(--text-muted);
      font-size: 13px;
      line-height: 1.4;
      transition: max-height 0.35s ease, padding 0.3s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
      padding: 0 20px 18px;
    }

    /* =================== MODAL APARTADO =================== */

    .modal-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.85);
      display: none;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(6px);
      z-index: 10000;
    }

    .modal-backdrop.active {
      display: flex;
    }

    .modal {
      width: 90%;
      max-width: 420px;
      background: #101010;
      padding: 18px;
      border-radius: 16px;
      border: 1px solid var(--border-soft);
      box-shadow: 0 24px 70px rgba(0,0,0,0.95);
      margin: 0 auto;
    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .modal-header h3 {
      font-size: 16px;
    }

    .modal-close {
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 20px;
      cursor: pointer;
    }

    .modal-body {
      margin-top: 8px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .modal-form {
      margin-top: 12px;
      display: grid;
      gap: 8px;
    }

    .modal-form input,
    .modal-form textarea {
      border-radius: 10px;
      border: 1px solid #333;
      background: #000;
      color: #fff;
      padding: 9px;
      font-size: 13px;
    }

    .modal-form textarea {
      min-height: 70px;
      resize: vertical;
    }

    .modal-footer {
      margin-top: 12px;
      display: flex;
      justify-content: flex-end;
      gap: 8px;
    }

    /* =================== MODAL GALERÍA / LIGHTBOX =================== */

    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.85);
      backdrop-filter: blur(5px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9000;
    }

    .hidden {
      display: none;
    }

    .lightbox-img {
      max-width: 85%;
      max-height: 85%;
      border-radius: 12px;
      box-shadow: 0 0 25px rgba(0,0,0,0.8);
      animation: fadeIn .25s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.96); }
      to   { opacity: 1; transform: scale(1); }
    }

    .lb-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(20,20,20,0.6);
      border: 1px solid rgba(255,255,255,0.1);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 28px;
      color: white;
      transition: 0.25s ease;
      backdrop-filter: blur(5px);
    }

    .lb-arrow:hover {
      background: rgba(255,255,255,0.15);
      transform: translateY(-50%) scale(1.12);
    }

    .lb-prev {
      left: 5%;
    }

    .lb-next {
      right: 5%;
    }

    .lb-close {
      position: absolute;
      top: 28px;
      right: 28px;
      font-size: 38px;
      color: #fff;
      background: transparent;
      border: none;
      cursor: pointer;
      transition: 0.25s ease;
    }

    .lb-close:hover {
      opacity: 0.7;
      transform: scale(1.2);
    }

    /* =================== REDES SOCIALES =================== */

    .social-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
      margin-top: 24px;
    }

    @media (max-width: 900px) {
      .social-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .social-grid {
        grid-template-columns: 1fr;
      }
    }

    .social-card {
      background: var(--bg-card);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 26px 20px;
      border-radius: 16px;
      text-align: center;
      box-shadow: var(--shadow-strong);
      transition: all 0.25s ease;
      text-decoration: none;
      color: var(--text-main);
    }

    .social-card:hover {
      transform: translateY(-4px);
      border-color: var(--gold);
      box-shadow: 0 32px 90px rgba(0,0,0,0.95);
    }

    .social-icon {
      margin-bottom: 12px;
    }

    .social-name {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .social-handle {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* =================== FOOTER =================== */

    .footer {
      background: #050505;
      padding: 60px 0 30px;
      margin-top: 60px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 36px;
    }

    @media (max-width: 900px) {
      .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }

    .footer-logo {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--gold);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .footer-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
      max-width: 280px;
    }

    .footer-title {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 8px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .footer-links a {
      color: var(--text-muted);
      transition: color 0.25s ease;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      font-size: 11px;
      color: var(--text-muted);
      opacity: 0.8;
    }
  
/* =========================
   OPTIMIZACIÓN PARA CELULAR
   ========================= */
@media (max-width: 768px) {

  body {
    padding: 0 14px;
    overflow-x: hidden;
  }

  h1 { font-size: 26px !important; }
  h2 { font-size: 22px !important; }
  h3 { font-size: 18px !important; }
  p  { font-size: 15px !important; }

  button,
  .btn-wine,
  .btn-wine2,
  .btn-wine-outline {
    font-size: 16px !important;
    padding: 14px !important;
    border-radius: 10px;
  }

  .modal {
    width: 90% !important;
    max-width: 380px !important;
    padding: 24px !important;
  }

  .ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr)) !important;
    gap: 6px !important;
  }

  header, .header {
    padding: 10px 16px !important;
    height: auto !important;
  }

  .lucky-machine-controls {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .lucky-machine-controls select,
  .lucky-machine-controls button {
    width: 100% !important;
  }

  .container,
  .main-content,
  .ticket-container {
    width: 100% !important;
    max-width: 100% !important;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }
}
