:root {
      --orange: #f97316;
      --gold: #facc15;
      --dark: #111827;
      --dark2: #1a2234;
      --dark3: #1f2937;
      --dark4: #374151;
      --muted: #9ca3af;
      --text: #e5e7eb;
    }

* { 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);
      font-size: 1rem;
      line-height: 1.75;
    }

a { text-decoration: none; transition: color 0.25s; }

a:hover { color: var(--orange); }

/* BREADCRUMB */
    .breadcrumb-wrap {
      background: var(--dark2);
      padding: 0.65rem 0;
      border-bottom: 1px solid rgba(249,115,22,0.12);
    }

.breadcrumb {
      margin: 0;
      background: transparent;
      padding: 0;
      font-size: 0.83rem;
    }

.breadcrumb-item a { color: var(--orange); }

.breadcrumb-item.active { color: var(--muted); }

.breadcrumb-item + .breadcrumb-item::before { color: var(--muted); }

/* TICKER */
    .ticker-wrap {
      background: linear-gradient(90deg, var(--orange), #ea580c);
      padding: 0.45rem 0;
      overflow: hidden;
      white-space: nowrap;
    }

.ticker-inner {
      display: inline-flex;
      gap: 3rem;
      animation: ticker 35s linear infinite;
    }

.ticker-item { font-size: 0.83rem; font-weight: 600; color: #fff; }

.ticker-item .mult { color: var(--gold); }

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* HERO */
    .page-hero {
      background: linear-gradient(135deg, #0f172a 0%, #1a1000 40%, #1e0a00 70%, #111827 100%);
      padding: 4rem 0 3rem;
      position: relative;
      overflow: hidden;
    }

.page-hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 70%);
      border-radius: 50%;
    }

.page-hero::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(250,204,21,0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

.hero-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(249,115,22,0.15);
      border: 1px solid var(--orange);
      color: var(--orange);
      border-radius: 50px;
      padding: 0.3rem 1rem;
      font-size: 0.82rem;
      font-weight: 700;
      margin-bottom: 1rem;
      letter-spacing: 0.03em;
    }

.page-hero h1 {
      font-size: clamp(1.6rem, 3.5vw, 2.5rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 1.2rem;
    }

.page-hero h1 span { color: var(--orange); }

.page-hero .lead {
      color: #d1d5db;
      font-size: 1rem;
      margin-bottom: 2rem;
      max-width: 580px;
    }

/* CARD HAND DISPLAY */
    .card-hand {
      display: flex;
      gap: 0.5rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
    }

.play-card {
      width: 54px;
      height: 76px;
      background: #fff;
      border-radius: 7px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      font-weight: 800;
      box-shadow: 0 4px 15px rgba(0,0,0,0.4);
      color: #111;
      position: relative;
      transition: transform 0.3s;
    }

.play-card:hover { transform: translateY(-6px); }

.play-card.red { color: #dc2626; }

.play-card .suit { font-size: 1.3rem; }

/* STAT ITEMS */
    .stat-item {
      background: rgba(249,115,22,0.08);
      border: 1px solid rgba(249,115,22,0.2);
      border-radius: 12px;
      padding: 1.2rem;
      text-align: center;
      transition: all 0.3s;
    }

.stat-item:hover {
      border-color: var(--orange);
      background: rgba(249,115,22,0.14);
      transform: translateY(-3px);
    }

.stat-num { font-size: 1.6rem; font-weight: 800; color: var(--gold); }

.stat-lbl { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }

/* 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.7rem 1.8rem;
      border-radius: 8px;
      border: none;
      font-size: 0.95rem;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(249,115,22,0.35);
    }

.btn-primary-orange:hover {
      background: linear-gradient(135deg, #ea580c, var(--orange));
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(249,115,22,0.5);
      color: #fff !important;
    }

.btn-outline-gold {
      display: inline-flex;
      align-items: center;
      background: transparent;
      color: var(--gold) !important;
      font-weight: 700;
      padding: 0.7rem 1.8rem;
      border-radius: 8px;
      border: 2px solid var(--gold);
      font-size: 0.95rem;
      transition: all 0.3s;
    }

.btn-outline-gold:hover {
      background: var(--gold);
      color: #111 !important;
      transform: translateY(-2px);
    }

/* SECTION */
    .section-pad { padding: 4rem 0; }

.bg-dark { background: var(--dark) !important; }

.bg-dark2 { background: var(--dark2) !important; }

.section-title {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.5rem;
    }

.section-title span { color: var(--orange); }

.section-sub { color: var(--muted); font-size: 0.95rem; max-width: 600px; margin: 0 auto; }

.divider-line {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      border-radius: 2px;
      margin-bottom: 1rem;
    }

/* IMAGE WRAP */
    .img-wrap {
      border-radius: 14px;
      overflow: hidden;
      margin: 2rem 0;
      border: 1px solid rgba(249,115,22,0.2);
      box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    }

.img-wrap img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.4s;
    }

.img-wrap:hover img { transform: scale(1.02); }

/* CONTENT BLOCK */
    .content-block {
      background: var(--dark3);
      border-radius: 12px;
      padding: 1.8rem;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(249,115,22,0.12);
    }

.content-block h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--orange);
      margin-bottom: 1rem;
    }

.content-block p { color: #d1d5db; font-size: 0.95rem; margin-bottom: 0.8rem; }

.content-block p:last-child { margin-bottom: 0; }

/* HAND RANKINGS TABLE */
    .hand-rank-card {
      background: var(--dark3);
      border: 1px solid rgba(249,115,22,0.15);
      border-radius: 10px;
      padding: 1rem 1.2rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 0.8rem;
      transition: all 0.3s;
    }

.hand-rank-card:hover {
      border-color: var(--orange);
      background: rgba(249,115,22,0.07);
      transform: translateX(4px);
    }

.hand-rank-num {
      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;
    }

.hand-rank-info h6 { color: #fff; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.15rem; }

.hand-rank-info p { color: var(--muted); font-size: 0.8rem; margin: 0; }

.hand-rank-icon { font-size: 1.4rem; margin-left: auto; }

/* STEP ITEMS */
    .step-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

.step-num {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--orange), #ea580c);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.95rem;
      color: #fff;
      flex-shrink: 0;
    }

.step-content h5 { color: var(--gold); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; }

.step-content p { color: #d1d5db; font-size: 0.88rem; margin: 0; }

/* TIPS BOX */
    .info-box {
      background: rgba(250,204,21,0.06);
      border: 1px solid rgba(250,204,21,0.25);
      border-radius: 12px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
    }

.info-box h5 { color: var(--gold); font-weight: 700; font-size: 1rem; margin-bottom: 0.8rem; }

.info-box ul { padding-left: 1.2rem; margin: 0; }

.info-box ul li { color: #d1d5db; font-size: 0.9rem; margin-bottom: 0.45rem; }

/* 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: #d1d5db; font-size: 0.88rem; margin: 0; }

/* FEAT CARDS */
    .feat-card {
      background: var(--dark3);
      border: 1px solid rgba(249,115,22,0.15);
      border-radius: 14px;
      padding: 1.8rem 1.5rem;
      height: 100%;
      transition: all 0.3s;
      text-align: center;
    }

.feat-card:hover {
      border-color: var(--orange);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(249,115,22,0.15);
    }

.feat-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--orange), #ea580c);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: #fff;
      margin: 0 auto 1rem;
    }

.feat-title { font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 0.6rem; }

.feat-text { color: var(--muted); font-size: 0.87rem; }

/* POKER POSITION TABLE */
    .custom-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0 0.4rem;
      font-size: 0.88rem;
    }

.custom-table thead th {
      background: linear-gradient(135deg, var(--orange), #ea580c);
      color: #fff;
      font-weight: 700;
      padding: 0.9rem 1rem;
      text-align: center;
    }

.custom-table thead th:first-child { border-radius: 8px 0 0 8px; }

.custom-table thead th:last-child { border-radius: 0 8px 8px 0; }

.custom-table tbody tr {
      background: var(--dark3);
      transition: all 0.25s;
    }

.custom-table tbody tr:hover { background: rgba(249,115,22,0.08); }

.custom-table tbody td {
      padding: 0.85rem 1rem;
      color: #d1d5db;
      text-align: center;
      border-top: 1px solid rgba(249,115,22,0.08);
      border-bottom: 1px solid rgba(249,115,22,0.08);
    }

.custom-table tbody td:first-child {
      border-left: 1px solid rgba(249,115,22,0.08);
      border-radius: 8px 0 0 8px;
      font-weight: 700;
      color: var(--gold);
    }

.custom-table tbody td:last-child {
      border-right: 1px solid rgba(249,115,22,0.08);
      border-radius: 0 8px 8px 0;
    }

/* CTA STRIP */
    .cta-strip {
      background: linear-gradient(135deg, #ea580c, var(--orange), #f59e0b);
      padding: 3.5rem 0;
      text-align: center;
    }

.cta-strip h3 { color: #fff; font-size: 1.8rem; font-weight: 800; margin-bottom: 0.8rem; }

.cta-strip p { color: rgba(255,255,255,0.9); font-size: 1rem; margin-bottom: 1.8rem; }

.btn-cta-white {
      display: inline-flex;
      align-items: center;
      background: #fff;
      color: var(--orange) !important;
      font-weight: 800;
      padding: 0.8rem 2.2rem;
      border-radius: 8px;
      font-size: 1rem;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

.btn-cta-white:hover {
      background: var(--dark);
      color: var(--orange) !important;
      transform: translateY(-3px);
    }

/* CHIP DISPLAY */
    .chip-display {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
      margin: 1rem 0;
    }

.chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      font-weight: 800;
      font-size: 0.78rem;
      border: 3px dashed rgba(255,255,255,0.4);
      box-shadow: 0 3px 10px rgba(0,0,0,0.4);
      transition: transform 0.3s;
    }

.chip:hover { transform: scale(1.1) rotate(10deg); }

.chip-1 { background: #dc2626; color: #fff; }

.chip-5 { background: #2563eb; color: #fff; }

.chip-25 { background: #16a34a; color: #fff; }

.chip-100 { background: #111; color: var(--gold); border-color: var(--gold); }

.chip-500 { background: var(--orange); color: #fff; }

.live-dot {
      width: 7px;
      height: 7px;
      background: #22c55e;
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }

@keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.4); }
    }

/* POSITION INDICATOR */
    .pos-badge {
      display: inline-block;
      padding: 0.25rem 0.7rem;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 700;
    }

.pos-early { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }

.pos-mid { background: rgba(249,115,22,0.15); color: var(--orange); border: 1px solid rgba(249,115,22,0.3); }

.pos-late { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }

/* PROGRESS */
    .skill-bar-wrap { margin-bottom: 1rem; }

.skill-bar-label { display: flex; justify-content: space-between; margin-bottom: 0.3rem; font-size: 0.85rem; color: #d1d5db; }

.skill-bar-bg { background: rgba(255,255,255,0.06); border-radius: 50px; height: 8px; }

.skill-bar-fill {
      height: 8px;
      border-radius: 50px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      transition: width 1.2s ease;
    }

/* RESPONSIVE */
    @media (max-width: 768px) {
.page-hero { padding: 2.5rem 0 2rem; }

.section-pad { padding: 2.5rem 0; }

.play-card { width: 44px; height: 62px; font-size: 0.9rem; }
}
