
:root {
  --red: #e50914;
  --red-dark: #8f050a;
  --black: #090909;
  --ink: #161616;
  --muted: #686868;
  --line: #e8e8e8;
  --gold: #ffd34d;
  --gold-deep: #f5a800;
  --bg: #ffffff;
  --soft: #f6f6f6;
  --radius: 8px;
  --shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Noto Sans Bengali", "Hind Siliguri", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: linear-gradient(90deg, #f0181f, #b50008);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}
.topbar .container {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-points { display: flex; gap: 18px; flex-wrap: wrap; }
.top-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0,0,0,.18); }
.btn-gold { background: linear-gradient(180deg, #ffe26b, #f3a900); color: #201000; }
.btn-green { background: #14b951; color: #fff; }
.btn-dark { background: #131313; color: #fff; border-color: #363636; }
.btn-red { background: linear-gradient(180deg, #ff3138, #c80009); color: #fff; }
.site-header { background: var(--black); color: #fff; position: sticky; top: 0; z-index: 20; box-shadow: 0 3px 0 var(--gold); }
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  line-height: 1;
  font-weight: 1000;
  color: #fff;
  text-shadow: 0 3px 0 rgba(0,0,0,.3);
}
.brand strong:first-child { color: var(--red); font-size: 46px; font-style: italic; }
.brand strong:last-child { color: var(--gold); }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.main-nav a {
  padding: 13px 15px;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { background: var(--red); color: #fff; }
.hero {
  min-height: 600px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.45), rgba(0,0,0,.18)), var(--hero-image);
  background-size: cover;
  background-position: center;
  border-bottom: 5px solid var(--gold);
}
.hero .container { position: relative; z-index: 1; min-height: 600px; display: flex; align-items: center; }
.hero-copy { max-width: 650px; padding: 58px 0; }
.hero-logo {
  width: max-content;
  max-width: 100%;
  padding: 11px 15px 9px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff7d1, #ffc928);
  color: #d40610;
  font-weight: 1000;
  font-size: 24px;
  box-shadow: 0 8px 0 rgba(0,0,0,.22);
}
.hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: .92;
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: 0;
}
.hero h1 span { color: var(--gold); display: block; }
.hero p {
  max-width: 560px;
  margin: 24px 0 30px;
  color: #f5f5f5;
  font-size: 18px;
  font-weight: 700;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-mini {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
  max-width: 650px;
}
.hero-mini span {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.42);
  color: #fff;
  min-height: 74px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  font-weight: 900;
}
section { padding: 54px 0; }
.section-title {
  margin: 0 0 24px;
  text-align: center;
  color: var(--red);
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.18;
  font-weight: 1000;
}
.lead { color: var(--muted); font-size: 18px; max-width: 820px; margin: 0 auto 30px; text-align: center; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.category-card, .article-card, .faq-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}
.category-card img, .article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.category-body, .article-body { padding: 18px; }
.category-card h3, .article-card h3 { margin: 0 0 8px; color: #d60610; font-size: 21px; line-height: 1.28; }
.category-card p, .article-card p { margin: 0 0 14px; color: #555; }
.link-more { color: var(--red); font-weight: 1000; }
.intro-band { background: var(--soft); }
.intro-box {
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
  box-shadow: 0 18px 40px rgba(229, 9, 20, .08);
}
.intro-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}
.intro-copy h2, .content-page h1, .article-main h1 { margin: 0 0 16px; color: var(--red); line-height: 1.18; font-size: clamp(30px, 4vw, 46px); }
.intro-copy p { margin: 0 0 16px; color: #444; }
.intro-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  background: #fff;
  border-top: 3px solid var(--red);
}
.info-table th, .info-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.info-table th { width: 210px; color: #222; font-weight: 1000; }
.gold-strip {
  margin-top: 24px;
  background: linear-gradient(90deg, #ffea71, #f4a400);
  color: #1e1000;
  text-align: center;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 1000;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pillar {
  border-left: 4px solid var(--red);
  background: #fff;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,.07);
}
.pillar b { display: block; color: var(--red); font-size: 20px; margin-bottom: 8px; }
.dark-faq {
  background: #0b0b0b;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.92)), url('/assets/777jaya/777jaya-casino.jpg');
  background-size: cover;
  background-position: center;
}
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.faq-item {
  background: rgba(12,12,12,.82);
  border-color: rgba(255,255,255,.16);
  padding: 18px;
  box-shadow: none;
}
.faq-item h3 { margin: 0 0 8px; color: var(--gold); font-size: 18px; }
.faq-item p { margin: 0; color: #e7e7e7; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.meta { color: #777; font-size: 14px; font-weight: 800; margin-bottom: 10px; }
.footer {
  background: #0b0b0b;
  color: #d8d8d8;
  border-top: 4px solid var(--red);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 48px 0;
}
.footer h3 { color: #fff; margin: 0 0 14px; }
.footer p, .footer a { color: #d8d8d8; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.copyright { border-top: 1px solid #2b2b2b; text-align: center; padding: 16px; color: #aaa; }
.page-hero {
  background-image: linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.35)), var(--page-image);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 86px 0;
  border-bottom: 4px solid var(--gold);
}
.page-hero h1 { margin: 0; font-size: clamp(38px, 6vw, 72px); line-height: 1.02; font-weight: 1000; }
.page-hero p { max-width: 760px; font-size: 18px; font-weight: 700; }
.breadcrumb { padding: 18px 0 0; color: #777; font-size: 14px; font-weight: 800; }
.content-page { padding-top: 38px; }
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
}
.article-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 42px);
}
.article-main p { color: #444; margin: 0 0 16px; }
.article-main h2 { color: var(--red); margin: 30px 0 12px; line-height: 1.25; }
.article-main ul, .article-main ol { color: #444; padding-left: 24px; }
.article-main li { margin: 8px 0; }
.side-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.side-panel h3 { margin: 0 0 12px; color: var(--red); }
.side-panel ul { margin: 0; padding-left: 20px; color: #555; }
.note {
  margin: 24px 0;
  padding: 18px;
  border-left: 5px solid var(--gold-deep);
  background: #fff8df;
  color: #3b2a00;
  font-weight: 800;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 18px;
}
.step strong { color: var(--red); display: block; font-size: 22px; }
@media (max-width: 920px) {
  .topbar .container, .nav-wrap { align-items: flex-start; flex-direction: column; }
  .main-nav { width: 100%; justify-content: flex-start; }
  .hero, .hero .container { min-height: 560px; }
  .hero-mini, .category-grid, .article-grid, .pillars, .faq-grid, .steps, .content-layout, .intro-layout, .footer-main {
    grid-template-columns: 1fr;
  }
  .content-layout aside { order: -1; }
  .footer-main { gap: 22px; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 22px, 1180px); }
  .top-points { gap: 10px; }
  .top-actions { width: 100%; }
  .top-actions .btn { flex: 1; padding: 0 10px; }
  .brand { font-size: 26px; }
  .brand strong:first-child { font-size: 38px; }
  .hero { background-position: 58% center; }
  .hero .container { align-items: flex-end; }
  .hero p { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  section { padding: 40px 0; }
  .info-table th, .info-table td { display: block; width: 100%; padding: 12px 0; }
  .info-table tr { display: block; padding: 10px 14px; border-bottom: 1px solid var(--line); }
  .info-table th, .info-table td { border-bottom: 0; }
}
