:root {
  --deep-red: #6f0005;
  --brown: #260b02;
  --gold: #ffd239;
  --cream: #fff2de;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: #fff;
  background: var(--brown);
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  height: 105px;
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, rgba(236, 0, 21, .96), rgba(94, 0, 3, .94));
  border-bottom: 1px solid rgba(255, 193, 24, .28);
  box-shadow: 0 10px 32px rgba(24, 0, 0, .3);
}
.header-inner,
.hero-inner,
.provider-inner,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  letter-spacing: -.025em;
}
.brand strong { display: inline-flex; align-items: baseline; font-family: Impact, Haettenschweiler, "Arial Black", sans-serif; font-style: italic; font-weight: 900; }
.brand strong b { color: #ffd52a; font-size: 1.08em; }
.brand strong span { color: #fff; }
.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 4px 16px rgba(0,0,0,.28);
}
nav { height: 100%; display: flex; align-items: stretch; gap: 50px; }
nav a {
  min-width: 76px;
  display: grid;
  place-items: center;
  position: relative;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: .05em;
}
nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 13px;
  width: 0; height: 5px;
  border-radius: 99px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .22s ease;
}
nav a:hover,
nav a.active { color: var(--gold); }
nav a:hover::after,
nav a.active::after { width: 64px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 7px; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--gold); }

.hero {
  min-height: 760px;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  background-image: url('/assets/pgg-casino-india-hero.webp');
  background-position: center top;
  background-size: cover;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(81,0,1,.92) 0%, rgba(87,0,2,.72) 32%, rgba(81,0,2,.16) 60%, rgba(35,0,0,.06) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(63,0,1,.88));
}
.hero-inner { padding-top: 0; }
.hero-copy { width: min(580px, 50%); text-shadow: 0 3px 11px rgba(34,0,0,.7); }
.hero h1 {
  margin: 0 0 24px;
  color: transparent;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(3.4rem, 5vw, 5.65rem);
  font-weight: 900;
  line-height: .98;
  white-space: nowrap;
  letter-spacing: -.015em;
  background: linear-gradient(180deg, #fff784 0%, #ffd630 30%, #efa200 64%, #a94700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 213, 47, .4);
  filter: drop-shadow(0 5px 0 #6f2000) drop-shadow(0 10px 8px rgba(28,0,0,.72));
}
.hero h1 span { color: inherit; }
.hero h2 { margin: 0 0 21px; font-size: 1.38rem; line-height: 1.3; }
.hero-copy > p {
  width: min(470px, 100%);
  margin: 0 0 28px;
  color: #f1d9d5;
  font-size: 1.07rem;
  line-height: 1.75;
}
.hero-actions { width: min(390px, 100%); display: grid; gap: 15px; }
.store-button {
  min-height: 75px;
  display: grid;
  grid-template-columns: 50px 1fr 34px;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border: 2px solid var(--gold);
  border-radius: 38px;
  background: linear-gradient(90deg, rgba(65,0,0,.88), rgba(42,0,0,.62));
  box-shadow: 0 8px 18px rgba(43,0,0,.28);
  transition: transform .2s ease, background .2s ease;
}
.store-button:hover { transform: translateX(6px); background: rgba(120,0,3,.86); }
.store-button img { width: 44px; height: 44px; object-fit: cover; border-radius: 7px; }
.store-button .android-icon { width: 36px; height: 42px; margin-left: 4px; object-fit: contain; border-radius: 0; box-shadow: none; }
.store-button span:nth-child(2) { font-size: 1.08rem; font-weight: 800; }
.store-button small { display: block; color: #d7bfba; font-size: .74rem; font-weight: 500; }
.store-button b { color: var(--gold); font-size: 3rem; line-height: 1; font-family: Arial, sans-serif; font-weight: 300; }

.providers {
  min-height: 104px;
  display: flex;
  align-items: center;
  background: #770004;
  border-top: 1px solid rgba(255,207,45,.75);
  border-bottom: 2px solid rgba(255,207,45,.65);
}
.provider-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3.2vw, 44px);
}
.provider-inner img { width: 125px; height: 83px; object-fit: contain; }
.provider-inner i { width: 1px; height: 45px; background: rgba(255,222,86,.28); }

.products {
  padding: 72px 0 94px;
  background: radial-gradient(circle at 50% 0, #471102 0, #2b0b02 43%, #210800 100%);
}
.products .section-inner > h2 {
  margin: 0;
  text-align: center;
  color: #ffdb44;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 500;
}
.title-line { display: block; width: 88px; height: 7px; margin: 37px auto 57px; border-radius: 99px; background: linear-gradient(90deg, #ffe359, #f28b00); }
.product-list { display: grid; }
.product-row {
  min-height: 285px;
  display: grid;
  grid-template-columns: 1fr 330px;
  align-items: center;
  gap: 30px;
  padding: 22px 11%;
}
.product-row.reverse { grid-template-columns: 330px 1fr; }
.product-copy { padding: 28px 32px; border-radius: 17px; background: linear-gradient(90deg, rgba(71,10,8,.96), rgba(47,10,9,0)); }
.product-row.reverse .product-copy { background: linear-gradient(270deg, rgba(71,10,8,.96), rgba(47,10,9,0)); }
.product-copy h3 { margin: 0 0 18px; color: #fff; font-size: 1.65rem; line-height: 1.2; }
.product-copy p { margin: 0; color: #a65e60; font-size: 1.12rem; line-height: 1.55; }
.product-art { height: 250px; display: grid; place-items: center; }
.product-art img { width: 100%; height: 100%; object-fit: contain; }

footer { background: #170501; border-top: 1px solid rgba(255,201,43,.5); }
.footer-inner { min-height: 108px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-inner p { color: #9f7a70; font-size: .82rem; }
.footer-inner .brand img { width: 38px; height: 38px; }

@media (max-width: 960px) {
  .hero { min-height: 730px; height: auto; background-position: 62% top; }
  .hero::before { background: linear-gradient(90deg, rgba(63,0,0,.94), rgba(74,0,1,.75) 48%, rgba(45,0,0,.2)); }
  .hero-copy { width: 59%; }
  .hero h1 { white-space: normal; font-size: clamp(3.4rem, 7vw, 5.2rem); }
  .product-row, .product-row.reverse { grid-template-columns: 1fr 250px; padding: 20px 3%; }
  .product-row.reverse { grid-template-columns: 250px 1fr; }
}

@media (max-width: 700px) {
  .site-header { height: 78px; }
  .header-inner,
  .hero-inner,
  .provider-inner,
  .section-inner,
  .footer-inner { width: min(100% - 28px, 1120px); }
  .brand img { width: 38px; height: 38px; }
  .brand strong { font-size: .9rem; }
  .menu-toggle { display: block; }
  nav {
    display: none;
    position: absolute;
    left: 14px; right: 14px; top: 69px;
    height: auto;
    padding: 13px;
    border: 1px solid rgba(255,208,48,.45);
    border-radius: 12px;
    background: rgba(72,0,2,.97);
    box-shadow: 0 18px 35px rgba(0,0,0,.36);
  }
  nav.open { display: grid; }
  nav a { min-height: 46px; }
  nav a::after { bottom: 3px; height: 3px; }
  .hero {
    min-height: 850px;
    height: auto;
    align-items: flex-end;
    background-position: 68% top;
  }
  .hero::before { background: linear-gradient(180deg, rgba(42,0,0,.08) 10%, rgba(59,0,1,.35) 41%, rgba(63,0,1,.97) 67%, #500001 100%); }
  .hero::after { display: none; }
  .hero-inner { padding: 390px 0 52px; }
  .hero-copy { width: 100%; text-align: center; }
  .hero h1 { margin-bottom: 17px; font-size: clamp(2.85rem, 14vw, 4.3rem); white-space: normal; }
  .hero h2 { font-size: 1.13rem; }
  .hero-copy > p { margin-left: auto; margin-right: auto; font-size: .98rem; line-height: 1.58; }
  .hero-actions { margin: 0 auto; }
  .store-button { text-align: left; }
  .providers { min-height: 84px; }
  .provider-inner { gap: 7px; }
  .provider-inner img { width: 18%; height: auto; }
  .provider-inner i { height: 32px; }
  .products { padding: 58px 0 70px; }
  .title-line { margin: 26px auto 38px; }
  .product-row, .product-row.reverse { min-height: 250px; grid-template-columns: 1fr 120px; gap: 8px; padding: 18px 0; }
  .product-row.reverse { grid-template-columns: 120px 1fr; }
  .product-copy { padding: 20px 17px; }
  .product-copy h3 { font-size: 1.15rem; }
  .product-copy p { font-size: .9rem; }
  .product-art { height: 170px; }
  .footer-inner { min-height: 140px; padding: 28px 0; flex-direction: column; justify-content: center; text-align: center; }
  .footer-inner p { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
