    :root {
      --bg-page: #f3ebe0;
      --bg: #ffffff;
      --bg-soft: #fff8ef;
      --fg: #0a0a0a;
      --muted: #666666;
      --line: #e6d7c4;
      --orange: #ee9b20;
      --orange-deep: #f78300;
      --red: #b20000;
      --red-hot: #c02425;
      --gold: #f0cb35;
      --black: #0a0a0a;
      --nav: #111111;
      --radius: 10px;
      --shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
      --font-bn: "Hind Siliguri", sans-serif;
      --font-brand: "Syne", "Hind Siliguri", sans-serif;
      --max: 1100px;
      --shell: 1170px;
    }

    * { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 8.25rem;
    }
    body {
      margin: 0;
      font-family: var(--font-bn);
      color: var(--fg);
      background-color: #090807;
      background-image: url("assets/bgd33-page-background.jpg");
      background-repeat: no-repeat;
      background-position: center top;
      background-size: cover;
      background-attachment: fixed;
      line-height: 1.7;
    }

    .site-shell {
      width: min(var(--shell), 100%);
      min-height: 100vh;
      margin: 0 auto;
      background: #fff;
      box-shadow: 0 0 34px rgba(0, 0, 0, 0.5);
    }

    img { max-width: 100%; display: block; }
    a { color: var(--orange); text-decoration: none; }
    a:hover { color: var(--red-hot); }
    button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

    .wrap {
      width: min(var(--max), calc(100% - 1.5rem));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    }
    .topbar {
      position: relative;
      background: #fff;
      border-bottom: 1px solid var(--line);
    }
    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.75rem 0;
    }
    .logo {
      font-family: var(--font-brand);
      font-weight: 800;
      font-size: 1.7rem;
      letter-spacing: 0.02em;
      background: linear-gradient(90deg, var(--red-hot), var(--orange), var(--gold));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .nav-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1.15rem;
      border-radius: 999px;
      font-weight: 700;
      text-transform: none;
      transition: transform 180ms ease, filter 180ms ease;
    }
    .btn:hover { transform: translateY(-1px); filter: brightness(1.05); color: #fff; }
    .btn-ghost {
      border: 1px solid var(--red);
      background: #fff;
      color: var(--red);
    }
    .btn-ghost:hover { background: var(--red); color: #fff; }
    .btn-primary {
      background: linear-gradient(135deg, var(--red), var(--red-hot));
      color: #fff;
      box-shadow: 0 6px 16px rgba(178, 0, 0, 0.28);
    }
    .subnav {
      background: linear-gradient(90deg, #ff9200 0%, #f5a30b 55%, #e88700 100%);
      color: #fff;
    }
    .subnav-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.35rem 1rem;
      padding: 0.65rem 0;
      font-size: 0.92rem;
      font-weight: 600;
    }
    .subnav a { color: #fff; }
    .subnav a:hover { color: #552300; }

    .hero { padding: 0 0 0.4rem; }
    .hero-brand {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.1rem;
      margin-top: 1.25rem;
      text-align: center;
      animation: rise 700ms ease both;
    }
    .hero-brand::before,
    .hero-brand::after {
      content: "";
      height: 1px;
      min-width: 0;
      flex: 1 1 5rem;
      background: rgba(238, 155, 32, 0.24);
    }
    .hero-brand h1 {
      margin: 0;
      font-family: var(--font-bn);
      font-size: clamp(1.2rem, 2vw, 1.6rem);
      font-weight: 500;
      line-height: 1.3;
      letter-spacing: 0;
      color: var(--orange);
      flex: 0 1 auto;
      white-space: nowrap;
    }
    @media (max-width: 760px) {
      .hero-brand {
        gap: 0.6rem;
      }
      .hero-brand::before,
      .hero-brand::after { flex-basis: 1rem; }
      .hero-brand h1 {
        font-size: clamp(1.05rem, 5vw, 1.35rem);
        white-space: normal;
      }
    }
    .carousel {
      position: relative;
      overflow: hidden;
      border-radius: 0;
      min-height: clamp(220px, 42vw, 360px);
      box-shadow: none;
      border: 0;
      background: #1a1208;
      animation: rise 900ms ease both;
    }
    .slides { display: flex; height: 100%; transition: transform 500ms ease; }
    .slide {
      min-width: 100%;
      position: relative;
      min-height: clamp(220px, 42vw, 360px);
      background-size: cover;
      background-position: center;
      display: grid;
      align-content: center;
      padding: 1.5rem;
    }
    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(92, 30, 0, 0.08), transparent 24%, transparent 76%, rgba(92, 30, 0, 0.08));
    }
    .slide-copy {
      position: relative;
      z-index: 1;
      width: min(44rem, 50%);
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.55rem;
    }
    .slide-brand {
      display: block;
      color: #f28d00;
      font-size: clamp(0.92rem, 2vw, 1.45rem);
      font-weight: 900;
      line-height: 1;
      text-shadow: 0 2px 0 #fff3ca, 0 4px 12px rgba(137, 59, 0, 0.18);
    }
    .slide-brand i {
      margin: 0 0.35rem;
      color: #bd4700;
      font-style: normal;
    }
    .slide-kicker {
      display: block;
      width: min(100%, 35rem);
      border: 2px solid #b92700;
      border-radius: 14px;
      background: linear-gradient(180deg, #f54b13 0%, #cf1d00 100%);
      color: #fff9e8;
      padding: 0.45rem 1.15rem;
      font-size: clamp(0.9rem, 1.8vw, 1.25rem);
      font-weight: 900;
      line-height: 1.2;
      box-shadow: inset 0 1px rgba(255,255,255,0.42), 0 4px 0 #9e1b00, 0 10px 22px rgba(129, 36, 0, 0.23);
    }
    .slide-title {
      display: block;
      margin: 0;
      font-size: clamp(1.75rem, 4.2vw, 3.2rem);
      line-height: 1.08;
      color: #ffd52d;
      font-weight: 900;
      -webkit-text-stroke: 1.4px #7f2100;
      paint-order: stroke fill;
      text-shadow: 0 3px 0 #b52f00, 0 6px 0 #075db7, 0 10px 24px rgba(94, 28, 0, 0.3);
    }
    .carousel-dots {
      position: absolute;
      left: 50%;
      bottom: 0.85rem;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      gap: 0.45rem;
    }
    .carousel-dots button {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
    }
    .carousel-dots button.active {
      background: var(--orange);
      width: 22px;
      border-radius: 999px;
    }
    @media (max-width: 560px) {
      html { scroll-padding-top: 11.5rem; }
      .slide { padding: 1rem; }
      .slide-copy { width: min(23rem, 92%); gap: 0.35rem; }
      .slide-brand { font-size: 0.8rem; }
      .slide-kicker {
        width: 100%;
        border-radius: 10px;
        padding: 0.35rem 0.5rem;
        font-size: clamp(0.68rem, 3.4vw, 0.82rem);
      }
      .slide-title {
        font-size: clamp(1.25rem, 6.7vw, 1.72rem);
        -webkit-text-stroke-width: 1px;
        text-shadow: 0 2px 0 #b52f00, 0 4px 0 #075db7, 0 8px 18px rgba(94, 28, 0, 0.28);
      }
    }

    .section {
      padding: 2.1rem 0;
      border-top: 1px solid var(--line);
      animation: rise 700ms ease both;
    }
    #about {
      padding-top: 1.25rem;
      border-top: 0;
    }
    .section h2 {
      margin: 0 0 0.75rem;
      font-size: clamp(1.35rem, 3vw, 1.8rem);
      color: var(--orange);
      letter-spacing: -0.01em;
    }
    .section > p.lead,
    .lead {
      margin: 0 0 1.1rem;
      color: #333;
      max-width: 52rem;
    }
    .lead a, .panel a, .intro-text a { color: var(--orange); font-weight: 600; }
    .intro-text p { margin: 0 0 0.85rem; color: #333; }
    .intro-text p:last-child { margin-bottom: 0; }

    .intro-grid {
      display: grid;
      gap: 1.75rem;
      grid-template-columns: 1fr;
    }
    .panel {
      background: var(--bg-soft);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.05rem 1.15rem;
      color: #333;
      box-shadow: var(--shadow);
    }

    .games {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0.5rem;
    }
    .game {
      border-radius: 9px;
      border: 1px solid var(--line);
      background: #fff;
      display: grid;
      gap: 0.25rem;
      text-align: center;
      padding: 0.3rem 0.3rem 0.45rem;
      transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
      overflow: hidden;
      color: var(--fg);
      box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    }
    .game:hover {
      transform: translateY(-3px);
      border-color: rgba(238, 155, 32, 0.55);
      box-shadow: 0 10px 22px rgba(238, 155, 32, 0.18);
      color: var(--fg);
    }
    .game .thumb {
      width: 100%;
      aspect-ratio: 1;
      border-radius: 7px;
      object-fit: cover;
      background: #f5efe6;
      border: 1px solid var(--line);
    }
    .game strong {
      display: block;
      font-size: 0.72rem;
      font-weight: 700;
      line-height: 1.25;
      padding: 0 0.15rem;
      color: #222;
    }
    .game span {
      display: block;
      font-size: 0.64rem;
      color: var(--muted);
      line-height: 1.2;
      padding: 0 0.15rem;
    }
    @media (max-width: 560px) {
      .games { grid-template-columns: repeat(3, 1fr); }
    }

    .reasons {
      display: grid;
      gap: 0.75rem;
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .reasons li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.85rem;
      align-items: start;
      padding: 1rem 1.1rem;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: var(--shadow);
    }
    .reasons .n {
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(178, 0, 0, 0.1);
      color: var(--red);
      font-weight: 700;
    }
    .reasons strong { display: block; margin-bottom: 0.15rem; color: #222; }
    .reasons p { margin: 0; color: var(--muted); font-size: 0.98rem; }

    .table-wrap {
      overflow: visible;
      border: 0;
      border-radius: 0;
      background: #fff;
      color: #777;
      box-shadow: none;
    }
    table.history {
      width: 100%;
      border-collapse: collapse;
      table-layout: fixed;
      min-width: 0;
      font-size: 1rem;
    }
    table.history th,
    table.history td {
      border: 0;
      border-bottom: 1px solid #e6e6e6;
      padding: 0.8rem 0;
      text-align: left;
      vertical-align: top;
      color: #777;
      line-height: 1.45;
      overflow-wrap: anywhere;
    }
    table.history th {
      width: 27%;
      padding-right: 1.5rem;
      background: transparent;
      font-weight: 400;
      white-space: normal;
    }
    table.history tbody tr:first-child td { font-weight: 700; }
    @media (max-width: 560px) {
      table.history { font-size: 0.9rem; }
      table.history th { width: 38%; padding-right: 0.75rem; }
      table.history th,
      table.history td { padding-top: 0.7rem; padding-bottom: 0.7rem; }
    }

    .guides-box {
      height: 600px;
      overflow-y: auto;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      padding: 0.75rem;
      box-shadow: var(--shadow);
      scrollbar-color: var(--orange) transparent;
    }
    .guide-item {
      display: block;
      padding: 1rem 1.05rem;
      margin-bottom: 0.55rem;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: linear-gradient(90deg, rgba(238, 155, 32, 0.08), #fff);
      transition: border-color 180ms ease, transform 180ms ease;
      color: var(--fg);
    }
    .guide-item:last-child { margin-bottom: 0; }
    .guide-item:hover {
      border-color: rgba(238, 155, 32, 0.55);
      transform: translateX(3px);
      color: var(--fg);
    }
    .guide-item strong { display: block; margin-bottom: 0.2rem; color: #222; }
    .guide-item span { color: var(--muted); font-size: 0.95rem; }
    .guide-mission:hover { transform: none; }
    .guide-mission .guide-copy {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.8;
    }
    .guide-mission .guide-copy p { margin: 0.7rem 0 0; }
    .guide-mission .guide-copy p:first-child { margin-top: 0.35rem; }
    .guide-steps:hover { transform: none; }
    .guide-steps > span {
      display: block;
      line-height: 1.75;
    }
    .guide-steps ol {
      margin: 0.75rem 0 0;
      padding-left: 1.35rem;
      color: var(--muted);
      line-height: 1.75;
    }
    .guide-steps ul {
      margin: 0.45rem 0 0;
      padding-left: 1.25rem;
      line-height: 1.7;
    }
    .guide-steps li + li { margin-top: 0.35rem; }
    .guide-steps a { color: var(--orange-deep); font-weight: 700; }
    .guide-image {
      display: block;
      width: 100%;
      height: 360px;
      aspect-ratio: 16 / 9;
      margin-top: 1rem;
      object-fit: cover;
      border: 1px solid rgba(238, 155, 32, 0.3);
      border-radius: 10px;
      background: #f7efe4;
      box-shadow: 0 8px 20px rgba(100, 55, 0, 0.12);
    }
    @media (max-width: 560px) {
      .guide-image { height: auto; }
    }

    .faq { display: grid; gap: 0.6rem; }
    .faq details {
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #fff;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .faq summary {
      list-style: none;
      cursor: pointer;
      padding: 1rem 1.1rem;
      font-weight: 700;
      color: #222;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      align-items: center;
    }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary::after {
      content: "+";
      color: var(--orange);
      font-size: 1.25rem;
      line-height: 1;
    }
    .faq details[open] summary::after { content: "–"; }
    .faq .answer {
      padding: 0 1.1rem 1.05rem;
      color: var(--muted);
      border-top: 1px solid transparent;
    }
    .faq details[open] .answer { border-top-color: var(--line); padding-top: 0.85rem; }

    .reviews {
      display: grid;
      gap: 1rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 760px) {
      .reviews { grid-template-columns: repeat(3, 1fr); }
    }
    .review {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.25rem 1.1rem;
      background: #fff;
      box-shadow: var(--shadow);
      text-align: center;
    }
    .review-head {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0.65rem;
      align-items: center;
      margin-bottom: 0.85rem;
    }
    .review-head > div:last-child {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .avatar {
      width: clamp(112px, 13vw, 150px);
      height: clamp(112px, 13vw, 150px);
      border-radius: 50%;
      object-fit: cover;
      object-position: center;
      border: 4px solid #fff;
      box-shadow: 0 6px 18px rgba(0,0,0,0.18);
      flex-shrink: 0;
    }
    .stars {
      order: 2;
      color: var(--orange);
      letter-spacing: 0.08em;
      font-size: 1.05rem;
    }
    .review h3 {
      order: 1;
      margin: 0 0 0.2rem;
      font-size: 1.05rem;
      color: #c45d00;
    }
    .review p {
      margin: 0;
      font-style: italic;
      color: var(--muted);
      font-size: 0.96rem;
    }

    .short-intro {
      display: grid;
      gap: 1.1rem;
    }
    @media (min-width: 800px) {
      .short-intro { grid-template-columns: 1.2fr 0.9fr; align-items: center; }
    }
    .short-intro img {
      width: 100%;
      height: auto;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      object-fit: contain;
      max-height: none;
      background: #fff;
      box-shadow: var(--shadow);
    }
    .keywords {
      margin-top: 1rem;
      padding: 0.95rem 1.05rem;
      border-radius: 12px;
      border: 1px dashed rgba(238, 155, 32, 0.55);
      background: rgba(238, 155, 32, 0.08);
      color: var(--muted);
      word-break: break-word;
    }
    .keywords strong {
      display: block;
      color: var(--orange-deep);
      margin-bottom: 0.35rem;
    }

    .articles { display: grid; gap: 0.85rem; }
    .article {
      display: grid;
      grid-template-columns: 112px 1fr;
      gap: 0.95rem;
      padding: 0.75rem;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: #fff;
      transition: border-color 180ms ease, box-shadow 180ms ease;
      color: var(--fg);
      box-shadow: var(--shadow);
    }
    .article:hover {
      border-color: rgba(238, 155, 32, 0.5);
      box-shadow: 0 10px 22px rgba(238, 155, 32, 0.12);
      color: var(--fg);
    }
    .article .thumb {
      width: 112px;
      height: 84px;
      display: block;
      object-fit: cover;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(238,155,32,0.35), rgba(178,0,0,0.25));
      border: 1px solid var(--line);
    }
    .article h3 { margin: 0 0 0.3rem; font-size: 1.05rem; color: #222; }
    .article p { margin: 0; color: var(--muted); font-size: 0.92rem; }
    .article time {
      display: block;
      margin-top: 0.35rem;
      color: #8a6c49;
      font-size: 0.8rem;
    }
    .pager {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-top: 1.1rem;
      justify-content: center;
    }
    .pager a,
    .pager span {
      min-width: 2.2rem;
      height: 2.2rem;
      padding: 0 0.55rem;
      display: inline-grid;
      place-items: center;
      border-radius: 8px;
      border: 1px solid var(--line);
      background: #fff;
      font-size: 0.92rem;
      color: #333;
    }
    .pager a:hover,
    .pager .current {
      background: var(--orange);
      color: #fff;
      border-color: transparent;
      font-weight: 700;
    }

    .footer {
      margin-top: 1rem;
      padding: 2.4rem 0 2rem;
      border-top: 1px solid #222;
      background: #111;
      color: #ddd;
    }
    .footer-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 800px) {
      .footer-grid { grid-template-columns: 1fr 1fr 1.2fr; }
    }
    .footer h3 {
      margin: 0 0 0.75rem;
      font-size: 1.05rem;
      color: var(--orange);
    }
    .footer ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 0.45rem;
    }
    .footer li a { color: #cfcfcf; }
    .footer li a:hover { color: var(--gold); }
    .contact p {
      margin: 0 0 0.4rem;
      color: #cfcfcf;
      font-size: 0.95rem;
    }
    .contact strong { color: #fff; }
    .map {
      margin-top: 0.75rem;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #333;
      min-height: 220px;
      aspect-ratio: 4 / 3;
      background: linear-gradient(135deg, #2a1a08, #1a1a1a);
    }
    .map iframe {
      display: block;
      width: 100%;
      height: 100%;
      border: 0;
    }
    .copy {
      margin-top: 1.6rem;
      padding-top: 1rem;
      border-top: 1px solid #2a2a2a;
      color: #999;
      font-size: 0.88rem;
      text-align: center;
    }

    @keyframes rise {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation: none !important;
        transition: none !important;
      }
    }
    @media (max-width: 1170px) {
      body {
        background-image: none;
        background-color: var(--bg-page);
      }
      .site-shell { box-shadow: none; }
    }
