/* Online Vavada — UI kit
   Mobile-first, premium dark theme with gold accents.
*/

:root{
  --bg0: #070913;
  --bg1: #0b0e18;
  --panel: rgba(255,255,255,0.05);
  --panel2: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.10);
  --text: #e9ecf4;
  --muted: rgba(233,236,244,0.72);
  --gold: #d6b15a;
  --gold2: #f0d28a;
  --red: #ff2e4b;
  --red2: #ff5b7a;
  --green: #63c11a;

  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;

  --shadow: 0 18px 55px rgba(0,0,0,0.55);
  --shadow-soft: 0 10px 28px rgba(0,0,0,0.35);

  --container: 1200px;
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden; /* prevent mobile horizontal scroll */
}

body{
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(900px 560px at 18% 10%, rgba(214,177,90,0.09), transparent 55%),
    radial-gradient(760px 520px at 88% 12%, rgba(255,46,75,0.08), transparent 50%),
    radial-gradient(760px 520px at 50% 92%, rgba(255,255,255,0.06), transparent 55%),
    linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 55%, #070914 100%);
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; height: auto; display: block; }


/* Visually hidden (for accessible headings) */
.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}


.container{
  width: min(var(--container), 100% - 32px);
  margin: 0 auto;
}

.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,9,19,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.logo{
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 20px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 30px rgba(214,177,90,0.20);
}

.nav{
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(233,236,244,0.86);
}

.nav a{
  padding: 10px 10px;
  border-radius: 10px;
  transition: background .15s ease, color .15s ease;
}

.nav a:hover{
  background: rgba(255,255,255,0.06);
  color: #fff;
}

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

.btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.25),
    0 10px 22px rgba(0,0,0,0.35);
  cursor: pointer;
  user-select: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease, filter .12s ease;
  overflow: hidden;
  white-space: nowrap;
}


.btn__text-short{ display:none; }

.btn::after{
  content: "";
  position: absolute;
  inset: -40%;
  width: 40%;
  transform: translateX(-160%) rotate(20deg);
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.22), transparent);
  transition: transform .7s ease;
}

.btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 0 -1px 0 rgba(0,0,0,0.28),
    0 14px 28px rgba(0,0,0,0.42);
}

.btn:hover::after{
  transform: translateX(340%) rotate(20deg);
}

.btn:active{
  transform: translateY(0);
  filter: brightness(0.98);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(0,0,0,0.30),
    0 8px 18px rgba(0,0,0,0.32);
}

.btn--primary{
  border: 1px solid rgba(255,46,75,0.30);
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.00) 45%),
              linear-gradient(135deg, var(--red), var(--red2));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 rgba(0,0,0,0.28),
    0 16px 34px rgba(255,46,75,0.22),
    0 10px 22px rgba(0,0,0,0.30);
}

.btn--primary.btn--pulse{
  animation: btnPulse 2.8s ease-in-out infinite;
}

@keyframes btnPulse{
  0%,100%{ box-shadow: 0 14px 32px rgba(255,46,75,0.18); }
  50%{ box-shadow: 0 18px 44px rgba(255,46,75,0.32); }
}

.btn--ghost{
  background: rgba(255,255,255,0.03);
}

.btn--play{
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.00) 45%),
              linear-gradient(135deg, #79d126, #4aa313);
  border: 1px solid rgba(99,193,26,0.40);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 0 -1px 0 rgba(0,0,0,0.28),
    0 16px 34px rgba(99,193,26,0.18),
    0 10px 22px rgba(0,0,0,0.30);
}

.burger{
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  align-items: center;
  justify-content: center;
}

.burger span{
  width: 18px;
  height: 2px;
  background: rgba(233,236,244,0.9);
  position: relative;
  border-radius: 2px;
}

.burger span::before,
.burger span::after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(233,236,244,0.9);
  border-radius: 2px;
}

.burger span::before{ top: -6px; }
.burger span::after{ top: 6px; }

.mobile-menu{
  display: none;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.mobile-menu__inner{
  padding: 12px 0 18px;
  display: grid;
  gap: 10px;
}

.mobile-menu__nav{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-menu__nav a{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu__actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-menu__actions .btn{
  width: 100%;
}

.promo{
  position: relative;
  margin-top: 18px;
  border-radius: var(--radius-xl);
  padding: 26px 22px;
  background:
    radial-gradient(900px 380px at 22% 20%, rgba(214,177,90,0.10), transparent 60%),
    radial-gradient(760px 320px at 82% 20%, rgba(255,46,75,0.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.promo::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(800px 380px at 50% -30%, rgba(255,255,255,0.10), transparent 60%);
  pointer-events:none;
}

.promo__decor{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity: 0.92;
}

.promo__decor img{
  position:absolute;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.55));
}

.promo__decor .chips-left{
  left: -40px;
  top: -30px;
  width: 320px;
}

.promo__decor .chips-right{
  right: -40px;
  top: -10px;
  width: 330px;
  opacity: 0.96;
}

.promo__content{
  position: relative;
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.promo__kicker{
  color: rgba(233,236,244,0.78);
  font-size: 14px;
}

.promo h1{
  margin: 0;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: 0.02em;
  line-height: 1.16;
}

.promo h1 .gold{
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 14px 34px rgba(214,177,90,0.14);
}

.promo__sub{
  margin: 0;
  color: rgba(233,236,244,0.82);
  max-width: 60ch;
}

.promo__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.section{
  margin-top: 22px;
  padding: 22px 0;
}

.section__title{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
}

.section__title h2{
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.section__title .hint{
  color: rgba(233,236,244,0.70);
  font-size: 13px;
}

.panel{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.filters{
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 10px;
  padding: 12px;
}

.input, select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(233,236,244,0.92);
  outline: none;
}

.input:focus, select:focus{
  border-color: rgba(214,177,90,0.35);
  box-shadow: 0 0 0 4px rgba(214,177,90,0.10);
}

.tag-row{
  display:flex;
  gap: 8px;
  align-items:center;
  justify-content:flex-end;
  flex-wrap: wrap;
}

.tag{
  padding: 9px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  font-size: 12px;
  color: rgba(233,236,244,0.85);
}

.tag--hit{
  border-color: rgba(255, 205, 82, 0.25);
  background: linear-gradient(135deg, rgba(255,205,82,0.18), rgba(214,177,90,0.08));
  color: rgba(255,235,195,0.95);
}

.tag--new{
  border-color: rgba(46, 196, 182, 0.25);
  background: linear-gradient(135deg, rgba(46,196,182,0.16), rgba(46,196,182,0.07));
  color: rgba(209,255,251,0.95);
}

.game-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
}

.game-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 12px 26px rgba(0,0,0,0.30);
  transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
  min-width: 0;
}

.game-card:hover{
  transform: translateY(-2px);
  border-color: rgba(214,177,90,0.22);
  box-shadow: 0 18px 34px rgba(0,0,0,0.40);
}

.game-card__img{
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
  background: rgba(255,255,255,0.04);
}

.game-card__title{
  padding: 10px 12px 12px;
  font-size: 13px;
  color: rgba(233,236,244,0.90);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card__overlay{
  position:absolute;
  inset: 0;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 12px;
  padding: 14px;
  background: rgba(7,9,19,0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease;
}

.game-card:hover .game-card__overlay,
.game-card:focus-within .game-card__overlay,
.game-card.active .game-card__overlay{
  opacity: 1;
  pointer-events: auto;
}

.game-card__overlay .btn{
  width: min(200px, 85%);
}

.game-card__overlay .small{
  font-size: 12px;
  color: rgba(233,236,244,0.78);
  text-align: center;
}

.content{
  padding: 16px 16px 18px;
}

.content h2, .content h3{
  margin: 18px 0 10px;
}

.content p{
  margin: 10px 0;
  color: rgba(233,236,244,0.86);
}

.content ul, .content ol{
  margin: 10px 0 10px 18px;
  color: rgba(233,236,244,0.86);
}

.content li{
  margin: 6px 0;
}

.table-wrap{
  margin-top: 10px;
  overflow: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
}

table{
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: rgba(255,255,255,0.03);
}

th, td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  vertical-align: top;
  text-align: left;
  font-size: 13px;
  color: rgba(233,236,244,0.86);
}

th{
  font-weight: 700;
  color: rgba(233,236,244,0.92);
  background: rgba(255,255,255,0.04);
}

.form{
  display:grid;
  gap: 10px;
  margin-top: 10px;
}

.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.note{
  font-size: 12px;
  color: rgba(233,236,244,0.70);
}

.faq{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

details{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 10px 12px;
}

summary{
  cursor: pointer;
  font-weight: 700;
  color: rgba(233,236,244,0.92);
}

details[open]{
  border-color: rgba(214,177,90,0.20);
}

.reviews{
  display:grid;
  gap: 12px;
  margin-top: 12px;
}

.review{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.avatar{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(214,177,90,0.35), rgba(255,46,75,0.20));
  border: 1px solid rgba(255,255,255,0.12);
}

.review__meta{
  display:flex;
  gap: 8px;
  align-items:center;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(233,236,244,0.72);
}

.review__meta b{
  font-size: 13px;
  color: rgba(233,236,244,0.92);
}

.footer{
  margin-top: 26px;
  padding: 26px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.12);
}

.footer__grid{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

.footer p{
  margin: 8px 0;
  color: rgba(233,236,244,0.72);
  font-size: 13px;
}

.footer a{
  color: rgba(233,236,244,0.82);
}

.footer a:hover{
  color: #fff;
}

.badges{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.badge{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  font-size: 12px;
  color: rgba(233,236,244,0.78);
}

/* Winners carousel */
.winner-carousel{
  overflow-x: auto;
  overflow-y: hidden;
  padding: 14px 14px 16px;
  scrollbar-width: none;
}

.winner-carousel::-webkit-scrollbar{ display: none; }

.winner-track{
  display:flex;
  gap: 12px;
  will-change: transform;
}

.winner-card{
  flex: 0 0 240px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 12px 26px rgba(0,0,0,0.28);
}

.winner-card__img{
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
}

.winner-card__body{
  padding: 10px 12px 12px;
  display:grid;
  gap: 6px;
}

.winner-card__body .row{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: rgba(233,236,244,0.78);
}

.winner-card__body .row b{
  font-size: 13px;
  color: rgba(233,236,244,0.92);
}

.win{
  color: rgba(255,235,195,0.96);
  background: linear-gradient(135deg, rgba(214,177,90,0.22), rgba(214,177,90,0.08));
  border: 1px solid rgba(214,177,90,0.24);
  padding: 2px 8px;
  border-radius: 999px;
}

@media (max-width: 1100px){
  .game-grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .filters{ grid-template-columns: 1fr 1fr; }
  .tag-row{ justify-content: flex-start; }
}

@media (max-width: 860px){
  .nav{ display:none; }
  .burger{ display: inline-flex; }
  .mobile-menu.show{ display:block; }
  .actions{ display:flex; }
  .promo{ padding: 22px 18px; }
  .promo__decor .chips-left{ width: 270px; }
  .promo__decor .chips-right{ width: 285px; }
  .game-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .container{ width: calc(100% - 20px); }
  .header__inner{ padding: 12px 0; }
  .logo{ font-size: 18px; }
  .promo__decor{ opacity: 0.78; }
  .promo__decor .chips-left{ left: -70px; top: -40px; width: 250px; }
  .promo__decor .chips-right{ right: -70px; top: -40px; width: 260px; }
  .filters{ grid-template-columns: 1fr; }
  .game-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form__row{ grid-template-columns: 1fr; }
  table{ min-width: 620px; }
}

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

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; }
  .btn--pulse{ animation: none !important; }
}


/* ===========================
   Design v2 (hero + menu under banner)
   =========================== */

.header{
  position: relative;
  background: linear-gradient(180deg, rgba(7,9,19,0.78) 0%, rgba(7,9,19,0.30) 100%);
  border-bottom: 0;
}

.header__inner{
  padding: 18px 0 14px;
}

.help-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(233,236,244,0.82);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.help-link:hover{
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.96);
  transform: translateY(-1px);
}

.btn--shine{
  overflow: hidden;
}
.btn--shine::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.55) 18%, transparent 36%);
  transform: translateX(-120%);
  animation: btnShine 3.8s ease-in-out infinite;
  opacity: 0.22;
}
@keyframes btnShine{
  0%{ transform: translateX(-120%); }
  45%{ transform: translateX(120%); }
  100%{ transform: translateX(120%); }
}

.hero{
  margin-top: 10px;
}
.hero__card{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.34);
}
.hero__img{
  width: 100%;
  height: min(340px, 44vw);
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
}

.hero__img.hero__img--contain{
  height: auto;
  object-fit: contain;
  transform: none;
  filter: none;
}
.hero__overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  padding: 22px 22px 18px;
  background: linear-gradient(180deg, rgba(8,10,18,0.10) 0%, rgba(8,10,18,0.82) 78%, rgba(8,10,18,0.92) 100%);
}
.hero__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  font-size: clamp(20px, 2.2vw, 32px);
  text-shadow: 0 10px 26px rgba(0,0,0,0.55);
}
.hero__title .gold{
  background: linear-gradient(135deg, #ffe6a6, var(--gold2), #ffcd66);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__title .plus{
  display:inline-block;
  margin-left: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(214,177,90,0.24);
  background: rgba(214,177,90,0.14);
  color: rgba(255,235,195,0.98);
  font-size: 0.70em;
  vertical-align: middle;
}

.section-nav{
  margin-top: 12px;
}
.section-nav__inner{
  display:flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  overflow-x: auto;
  scrollbar-width: none;
}
.section-nav__inner::-webkit-scrollbar{ display:none; }

.section-nav a{
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: rgba(233,236,244,0.86);
  border: 1px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.section-nav a:hover{
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.section-nav a[aria-current="page"]{
  background: rgba(214,177,90,0.14);
  border-color: rgba(214,177,90,0.22);
  color: rgba(255,235,195,0.98);
}

/* Ensure native selects open above cards */
.filters{
  position: relative;
  z-index: 5;
}

/* Reviews avatar */
.avatar{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(255,255,255,0.04);
}

/* Footer providers */
.footer__providers{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.providers-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.provider-item{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
  box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}

.provider-item img{
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1100px){
  .providers-grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 860px){
  .providers-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px){
  .hero__img{ height: 240px; }
  .hero__overlay{ padding: 18px 16px 14px; }
  .section-nav__inner{ justify-content: flex-start; }
  .actions{ gap: 8px; }
  .help-link{ display:none; } /* keep header clean on small screens */
}


/* Quick picker results */
.picker-results{
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.picker-item{
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.picker-item__img{
  width: 96px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.08);
}
.picker-item__title{
  font-weight: 800;
  margin: 0 0 2px;
}
.picker-item__meta{
  font-size: 13px;
  color: rgba(233,236,244,0.74);
  margin-bottom: 6px;
}
.picker-item__list{
  margin: 0;
  padding-left: 18px;
  color: rgba(233,236,244,0.88);
  font-size: 14px;
}
.picker-item__actions{
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn--mini{
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 14px;
}
.game-card.flash{
  outline: 2px solid rgba(214,177,90,0.55);
  box-shadow: 0 0 0 6px rgba(214,177,90,0.16), 0 18px 40px rgba(0,0,0,0.36);
}
@media (max-width: 520px){
  .picker-item{ grid-template-columns: 1fr; }
  .picker-item__img{ width: 100%; height: 150px; }
  .header__inner{ flex-wrap: wrap; }
  .actions{ width: 100%; justify-content: flex-end; }
  .help-link{ display:none; }
  .btn{ padding: 9px 12px; font-size: 13px; }
  .btn__text{ display:none; }
  .btn__text-short{ display:inline; }

}

