/* Dragon Tiger Bonus  Official APK site (Pakistan) */
:root {
  --bg: #0a0507;
  --bg-2: #14080c;
  --bg-3: #1e0c12;
  --surface: rgba(40, 14, 20, 0.72);
  --red: #c41e3a;
  --red-deep: #7a1022;
  --gold: #f0c14b;
  --gold-2: #ffd76a;
  --cream: #fff1d6;
  --muted: #c9b39a;
  --line: rgba(240, 193, 75, 0.22);
  --ok: #3dff6e;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --max: 1120px;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(196, 30, 58, 0.28), transparent 55%),
    radial-gradient(900px 500px at 10% 20%, rgba(240, 193, 75, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg-2), var(--bg) 40%, #050304);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-2);
  text-decoration: none;
}

a:hover {
  color: #ffe7a0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 5, 7, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream);
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(240, 193, 75, 0.35);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-name span {
  display: block;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-2);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #3a1200 !important;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(240, 193, 75, 0.28);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--cream);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--cream);
}

/* Hero  one composition */
.hero {
  position: relative;
  min-height: min(100svh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
}

@media (max-width: 760px) {
  .hero-media img {
    object-position: center 20%;
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 5, 7, 0.25) 0%, rgba(10, 5, 7, 0.55) 45%, rgba(10, 5, 7, 0.96) 100%),
    radial-gradient(circle at 70% 30%, rgba(196, 30, 58, 0.25), transparent 45%);
}

.hero-glow {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(240, 193, 75, 0.08));
  z-index: -1;
  pointer-events: none;
}

.hero-inner {
  padding: 7.5rem 0 3.2rem;
  max-width: 640px;
}

.hero-kicker {
  display: inline-block;
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
}

.hero-brand em {
  font-style: normal;
  color: var(--gold-2);
}

.hero-lead {
  margin: 0 0 1.6rem;
  max-width: 34ch;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.2rem;
}

.download-btn {
  display: inline-block;
  width: min(280px, 78vw);
  transition: transform 0.25s ease, filter 0.25s ease;
  cursor: pointer;
  animation: pulse-glow 2.4s ease-in-out infinite;
}

.download-btn:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.08);
}

.download-btn:active {
  transform: translateY(0) scale(0.99);
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(240, 193, 75, 0)); }
  50% { filter: drop-shadow(0 0 16px rgba(240, 193, 75, 0.45)); }
}

.hero-note {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 46rem;
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(30, 12, 18, 0.55), rgba(10, 5, 7, 0.2));
  border-block: 1px solid var(--line);
}

/* Game grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 0.75rem 1.1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid transparent;
  color: var(--cream);
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 193, 75, 0.45);
  background: rgba(55, 18, 26, 0.88);
  color: var(--cream);
}

.game-card img {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  object-fit: cover;
}

.game-card h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
}

.game-card .tag {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Feature / promo rows */
.feature-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.feature-row.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-visual {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #12070a;
}

.feature-visual img,
.feature-visual video {
  width: 100%;
  display: block;
}

.feature-copy h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.feature-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.bullet-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.45rem;
  color: var(--cream);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

/* Promo grid */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.promo-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #12070a;
  transition: transform 0.22s ease;
}

.promo-item:hover {
  transform: translateY(-3px);
}

.promo-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.promo-item .promo-body {
  padding: 0.9rem 1rem 1.1rem;
}

.promo-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.promo-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step {
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #3a1200;
  font-weight: 800;
}

.step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

/* Content pages */
.page-hero {
  padding: 3.5rem 0 1.5rem;
}

.page-hero h1 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.12;
}

.page-hero p {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
}

.content-block {
  padding: 0 0 3.5rem;
}

.prose {
  max-width: 720px;
}

.prose h2 {
  margin: 2rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 1.2rem;
}

.faq details {
  margin-bottom: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--cream);
}

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

/* Game detail */
.game-detail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

.game-detail-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #12070a;
  box-shadow: var(--shadow);
}

.game-detail-media video,
.game-detail-media img {
  width: 100%;
  display: block;
}

.game-side {
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.game-side .icon-lg {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  margin-bottom: 1rem;
}

.game-side h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
}

.game-side p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.meta-list {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

.meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(240, 193, 75, 0.12);
  color: var(--muted);
  font-size: 0.94rem;
}

.meta-list strong {
  color: var(--cream);
  font-weight: 700;
}

/* Sticky mobile download bar */
.sticky-download {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(10, 5, 7, 0.92);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transform: translateY(120%);
  transition: transform 0.32s ease;
}

.sticky-download.show {
  transform: translateY(0);
}

.sticky-download .download-btn {
  width: min(320px, 100%);
  margin: 0 auto;
  display: block;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 2.5rem 0 6.5rem;
  border-top: 1px solid var(--line);
  background: #070305;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(240, 193, 75, 0.12);
  color: #8f7a66;
  font-size: 0.88rem;
}

/* Utilities */
.center {
  text-align: center;
}

.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.chip {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }
}

/* Responsive / H5 */
@media (max-width: 980px) {
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row,
  .feature-row.reverse,
  .game-detail,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .feature-row.reverse .feature-copy { order: 0; }
  .steps { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: rgba(10, 5, 7, 0.96);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid rgba(240, 193, 75, 0.1);
  }
  .nav-cta {
    margin-top: 0.5rem;
    width: 100%;
  }
  .hero-inner { padding: 6.2rem 0 2.4rem; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-download { display: block; }
  .site-footer { padding-bottom: 5.5rem; }
  .section { padding: 3.2rem 0; }
}

@media (max-width: 380px) {
  .brand-name { font-size: 0.92rem; }
  .game-card img { width: 68px; height: 68px; }
}
