:root {
      --orange: #f97316;
      --gold: #facc15;
      --dark: #111827;
      --dark2: #1a2235;
      --dark3: #1f2d3d;
      --dark4: #162032;
      --muted: #9ca3af;
      --text: #e5e7eb;
      --pink: #f472b6;
      --green: #4ade80;
    }

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    overflow-x: clip;
    width: 100%;
      font-family: 'Hind Siliguri', sans-serif;
      background: var(--dark);
      color: var(--text);
      line-height: 1.75;
      overflow-x: hidden;
    }

/* TICKER */
    .ticker-wrap {
      background: linear-gradient(90deg, var(--orange), #ea580c, var(--orange));
      overflow: hidden;
      white-space: nowrap;
      padding: 0.5rem 0;
      border-bottom: 2px solid var(--gold);
    }

.ticker-inner {
      display: inline-flex;
      animation: ticker-scroll 38s linear infinite;
    }

.ticker-item {
      font-size: 0.82rem;
      font-weight: 700;
      color: #fff;
      padding: 0 2.5rem;
      letter-spacing: 0.02em;
    }

.ticker-item .mult { color: var(--gold); }

@keyframes ticker-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

/* BREADCRUMB */
    .breadcrumb-bar {
      background: var(--dark2);
      border-bottom: 1px solid rgba(249,115,22,0.12);
      padding: 0.65rem 0;
    }

.breadcrumb { margin: 0; background: none; padding: 0; font-size: 0.83rem; }

.breadcrumb-item a { color: var(--orange); text-decoration: none; }

.breadcrumb-item a:hover { color: var(--gold); }

.breadcrumb-item.active { color: var(--muted); }

.breadcrumb-item + .breadcrumb-item::before { color: var(--muted); }

/* HERO */
    .page-hero {
      background: linear-gradient(135deg, #0f1a10 0%, #1a2a0a 35%, #1a1a0a 65%, #111827 100%);
      padding: 5rem 0 4rem;
      position: relative;
      overflow: hidden;
    }

.page-hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 450px; height: 450px;
      background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

.page-hero::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -40px;
      width: 320px; height: 320px;
      background: radial-gradient(circle, rgba(250,204,21,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

.hero-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(249,115,22,0.15);
      border: 1px solid rgba(249,115,22,0.4);
      color: var(--orange);
      font-size: 0.82rem;
      font-weight: 700;
      padding: 0.35rem 1rem;
      border-radius: 50px;
      margin-bottom: 1.2rem;
      letter-spacing: 0.04em;
    }

.page-hero h1 {
      font-size: clamp(1.9rem, 4vw, 2.9rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 1.1rem;
    }

.page-hero h1 span { color: var(--orange); }

.page-hero .lead {
      color: #c5ccd8;
      font-size: 1rem;
      margin-bottom: 1.5rem;
      max-width: 560px;
    }

.live-dot {
      width: 8px; height: 8px;
      background: #4ade80;
      border-radius: 50%;
      animation: blink 1.2s infinite;
    }

@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* STAT ITEMS */
    .stat-item {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(249,115,22,0.15);
      border-radius: 10px;
      padding: 1rem;
      text-align: center;
    }

.stat-num { font-size: 1.4rem; font-weight: 800; color: var(--orange); }

.stat-lbl { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }

/* PIGGY VISUAL */
    .piggy-scene {
      background: linear-gradient(160deg, #0a1a0a 0%, #1a2a05 50%, #0f1a0f 100%);
      border: 2px solid rgba(249,115,22,0.25);
      border-radius: 20px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      min-height: 340px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

.piggy-scene::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(250,204,21,0.08) 0%, transparent 60%);
    }

.coin-rain {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      pointer-events: none;
      overflow: hidden;
    }

.coin {
      position: absolute;
      font-size: 1rem;
      animation: fall linear infinite;
      opacity: 0.6;
    }

@keyframes fall {
      0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
      10% { opacity: 0.7; }
      90% { opacity: 0.4; }
      100% { transform: translateY(340px) rotate(360deg); opacity: 0; }
    }

.piggy-main { font-size: 5rem; margin-bottom: 0.5rem; position: relative; z-index: 1; animation: bounce-pig 2s ease-in-out infinite; }

@keyframes bounce-pig {
      0%,100% { transform: translateY(0) rotate(-3deg); }
      50% { transform: translateY(-12px) rotate(3deg); }
    }

.piggy-label {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--gold);
      position: relative;
      z-index: 1;
      text-shadow: 0 0 20px rgba(250,204,21,0.4);
      margin-bottom: 0.8rem;
    }

.reel-row {
      display: flex;
      gap: 8px;
      margin: 0.5rem 0;
      position: relative;
      z-index: 1;
    }

.reel-box {
      background: rgba(255,255,255,0.06);
      border: 2px solid rgba(249,115,22,0.35);
      border-radius: 10px;
      width: 56px; height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      transition: all 0.3s;
    }

.reel-box.lit {
      border-color: var(--gold);
      background: rgba(250,204,21,0.12);
      box-shadow: 0 0 14px rgba(250,204,21,0.35);
    }

.jackpot-flash {
      background: linear-gradient(135deg, var(--orange), #ea580c);
      color: #fff;
      font-weight: 800;
      font-size: 1rem;
      padding: 0.5rem 1.4rem;
      border-radius: 50px;
      margin-top: 0.8rem;
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 18px rgba(249,115,22,0.4);
      animation: pulse-btn 1.8s ease-in-out infinite;
    }

@keyframes pulse-btn {
      0%,100% { box-shadow: 0 4px 18px rgba(249,115,22,0.4); }
      50% { box-shadow: 0 6px 28px rgba(249,115,22,0.7); }
    }

.hero-meta {
      display: flex;
      gap: 1.5rem;
      position: relative;
      z-index: 1;
      margin-top: 0.8rem;
    }

.hero-meta span { font-size: 0.78rem; color: var(--muted); }

.hero-meta i { margin-right: 0.3rem; }

/* BUTTONS */
    .btn-primary-orange {
      display: inline-flex;
      align-items: center;
      background: linear-gradient(135deg, var(--orange), #ea580c);
      color: #fff !important;
      font-weight: 700;
      padding: 0.8rem 2rem;
      border-radius: 8px;
      font-size: 0.95rem;
      border: none;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 4px 18px rgba(249,115,22,0.35);
    }

.btn-primary-orange:hover {
      background: linear-gradient(135deg, #fb923c, var(--orange));
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(249,115,22,0.5);
    }

.btn-outline-gold {
      display: inline-flex;
      align-items: center;
      background: transparent;
      color: var(--gold) !important;
      font-weight: 700;
      padding: 0.8rem 2rem;
      border-radius: 8px;
      font-size: 0.95rem;
      border: 2px solid var(--gold);
      text-decoration: none;
      transition: all 0.3s;
    }

.btn-outline-gold:hover {
      background: rgba(250,204,21,0.1);
      transform: translateY(-2px);
    }

/* SECTIONS */
    .section-pad { padding: 4.5rem 0; }

.bg-dark2 { background: var(--dark2); }

.bg-dark { background: var(--dark); }

.section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: #fff; line-height: 1.3; }

.section-title span { color: var(--orange); }

.section-sub { color: var(--muted); font-size: 0.95rem; max-width: 560px; margin: 0 auto; }

.divider-line {
      width: 50px; height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      border-radius: 2px;
      margin-bottom: 1rem;
    }

/* CONTENT BLOCK */
    .content-block {
      background: var(--dark3);
      border: 1px solid rgba(249,115,22,0.15);
      border-radius: 14px;
      padding: 2rem;
      margin-bottom: 1.5rem;
    }

.content-block h2 { color: #fff; font-size: 1.4rem; font-weight: 800; margin-bottom: 1rem; }

.content-block h3 {
      color: var(--gold);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

.content-block h3 i { color: var(--orange); }

.content-block p { color: #c5ccd8; margin-bottom: 0.9rem; font-size: 0.95rem; }

.content-block p:last-child { margin-bottom: 0; }

/* INFO BOX */
    .info-box {
      background: rgba(249,115,22,0.07);
      border: 1px solid rgba(249,115,22,0.25);
      border-radius: 12px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
    }

.info-box h5 { color: var(--orange); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.8rem; }

.info-box ul { list-style: none; padding: 0; margin: 0; }

.info-box ul li {
      color: #c5ccd8;
      font-size: 0.88rem;
      padding: 0.35rem 0 0.35rem 1.5rem;
      position: relative;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

.info-box ul li:last-child { border-bottom: none; }

.info-box ul li::before { content: '🐷'; position: absolute; left: 0; font-size: 0.8rem; }

/* WARN BOX */
    .warn-box {
      background: rgba(239,68,68,0.07);
      border: 1px solid rgba(239,68,68,0.25);
      border-radius: 12px;
      padding: 1.2rem 1.5rem;
    }

.warn-box h6 { color: #f87171; font-weight: 700; margin-bottom: 0.5rem; }

.warn-box p { color: #c5ccd8; font-size: 0.87rem; margin: 0; }

/* IMAGE */
    .img-wrap {
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(249,115,22,0.18);
      box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    }

.img-wrap img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }

.img-wrap:hover img { transform: scale(1.02); }

/* FEATURE CARDS */
    .feat-card {
      background: var(--dark3);
      border: 1px solid rgba(249,115,22,0.18);
      border-radius: 14px;
      padding: 1.8rem 1.5rem;
      height: 100%;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

.feat-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      transform: scaleX(0);
      transition: transform 0.3s;
      transform-origin: left;
    }

.feat-card:hover::before { transform: scaleX(1); }

.feat-card:hover { transform: translateY(-5px); border-color: rgba(249,115,22,0.4); box-shadow: 0 12px 30px rgba(249,115,22,0.12); }

.feat-icon {
      width: 52px; height: 52px;
      background: rgba(249,115,22,0.12);
      border: 1px solid rgba(249,115,22,0.3);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      color: var(--orange);
      margin-bottom: 1rem;
    }

.feat-title { font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 0.6rem; }

.feat-text { color: var(--muted); font-size: 0.87rem; line-height: 1.6; }

/* BONUS CARDS */
    .bonus-card {
      background: linear-gradient(135deg, rgba(250,204,21,0.07), rgba(249,115,22,0.05));
      border: 1px solid rgba(250,204,21,0.2);
      border-radius: 14px;
      padding: 1.5rem;
      margin-bottom: 1rem;
      position: relative;
      overflow: hidden;
    }

.bonus-card::after {
      content: '';
      position: absolute;
      top: -20px; right: -20px;
      width: 90px; height: 90px;
      background: radial-gradient(circle, rgba(250,204,21,0.12), transparent);
    }

.bonus-card .bonus-icon { font-size: 2rem; margin-bottom: 0.5rem; }

.bonus-card h5 { color: var(--gold); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; }

.bonus-card p { color: #c5ccd8; font-size: 0.87rem; margin: 0; }

/* PAYTABLE */
    .paytable-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 0.8rem;
      margin-top: 1rem;
    }

.paytable-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(249,115,22,0.18);
      border-radius: 10px;
      padding: 1rem 0.7rem;
      text-align: center;
      transition: all 0.25s;
    }

.paytable-card:hover { border-color: rgba(250,204,21,0.4); background: rgba(250,204,21,0.05); transform: translateY(-3px); }

.paytable-card .symbol { font-size: 2rem; margin-bottom: 0.4rem; }

.paytable-card .sym-name { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.4rem; }

.paytable-card .sym-val { font-size: 0.85rem; font-weight: 700; color: var(--gold); }

/* CUSTOM TABLE */
    .custom-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 0.87rem; }

.custom-table thead tr { background: rgba(249,115,22,0.15); }

.custom-table th { color: var(--gold); font-weight: 700; padding: 0.9rem 1rem; border-bottom: 2px solid rgba(249,115,22,0.3); white-space: nowrap; }

.custom-table td { padding: 0.8rem 1rem; color: #c5ccd8; border-bottom: 1px solid rgba(255,255,255,0.05); vertical-align: middle; }

.custom-table tr:last-child td { border-bottom: none; }

.custom-table tr:hover td { background: rgba(249,115,22,0.04); }

.sym-badge { display: inline-flex; align-items: center; font-size: 0.78rem; font-weight: 700; padding: 0.25rem 0.7rem; border-radius: 50px; }

.sym-gold { background: rgba(250,204,21,0.15); color: var(--gold); border: 1px solid rgba(250,204,21,0.3); }

.sym-orange { background: rgba(249,115,22,0.15); color: var(--orange); border: 1px solid rgba(249,115,22,0.3); }

.sym-green { background: rgba(34,197,94,0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }

.sym-pink { background: rgba(244,114,182,0.12); color: var(--pink); border: 1px solid rgba(244,114,182,0.3); }

/* STEP ITEMS */
    .step-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }

.step-num {
      min-width: 36px; height: 36px;
      background: linear-gradient(135deg, var(--orange), #ea580c);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 0.85rem; color: #fff; flex-shrink: 0;
    }

.step-content h5 { color: #fff; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; }

.step-content p { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* RTP DISPLAY */
    .rtp-display {
      background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(250,204,21,0.08));
      border: 2px solid rgba(249,115,22,0.3);
      border-radius: 14px;
      padding: 1.5rem;
      text-align: center;
      margin-bottom: 1rem;
    }

.rtp-num { font-size: 3rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 0.3rem; }

.rtp-label { color: var(--muted); font-size: 0.85rem; }

/* PROGRESS BARS */
    .prog-item { margin-bottom: 1rem; }

.prog-label { display: flex; justify-content: space-between; margin-bottom: 0.4rem; font-size: 0.83rem; }

.prog-label span:first-child { color: #c5ccd8; }

.prog-label span:last-child { color: var(--gold); font-weight: 700; }

.prog-bar-wrap { background: rgba(255,255,255,0.06); border-radius: 50px; height: 8px; overflow: hidden; }

.prog-bar-fill { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--orange), var(--gold)); transition: width 1.5s ease; }

/* CTA STRIP */
    .cta-strip {
      background: linear-gradient(135deg, #c2410c 0%, var(--orange) 50%, #ea580c 100%);
      padding: 3.5rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

.cta-strip::before {
      content: '';
      position: absolute; top: -50%; left: -10%; width: 120%; height: 200%;
      background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 31px);
    }

.cta-strip h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 0.8rem; position: relative; z-index: 1; }

.cta-strip p { color: rgba(255,255,255,0.88); font-size: 1rem; margin-bottom: 1.5rem; position: relative; z-index: 1; }

.btn-cta-white {
      display: inline-flex; align-items: center;
      background: #fff; color: var(--orange) !important;
      font-weight: 800; padding: 0.85rem 2.2rem;
      border-radius: 8px; font-size: 1rem;
      text-decoration: none; transition: all 0.3s;
      position: relative; z-index: 1;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }

/* GAME LINK CARDS */
    .game-link {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(249,115,22,0.15);
      border-radius: 8px;
      padding: 0.7rem 0.9rem;
      text-decoration: none;
      transition: all 0.25s;
      margin-bottom: 0.5rem;
    }

.game-link:hover { border-color: rgba(249,115,22,0.4); background: rgba(249,115,22,0.06); }

.game-link span.glabel { color: #e5e7eb; font-size: 0.88rem; font-weight: 600; flex: 1; }

.game-link i.fa-chevron-right { color: var(--orange); font-size: 0.75rem; }

/* RESPONSIVE */
    @media (max-width: 768px) {
.page-hero { padding: 3rem 0 2.5rem; }

.piggy-scene { min-height: 250px; padding: 1.5rem; }

.reel-box { width: 44px; height: 44px; font-size: 1.2rem; }

.section-pad { padding: 3rem 0; }

.paytable-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
.paytable-grid { grid-template-columns: repeat(2, 1fr); }
}
