/* ═══════════════════════════════════════════════════════════════
   A9Play Theme — Main Stylesheet v2.0
   Malaysia's #1 Online Casino
═══════════════════════════════════════════════════════════════ */

/* ── 1. CSS Custom Properties ──────────────────────────────── */
:root {
  /* Colors */
  --gold:        #ffcc00;
  --gold-dark:   #d4a017;
  --gold-light:  #ffe066;
  --navy:        #080e37;
  --navy-mid:    #0d1544;
  --navy-light:  #141d5c;
  --navy-card:   #0f1860;
  --navy-deep:   #050b28;
  --white:       #ffffff;
  --text-light:  #e0e0e0;
  --text-muted:  #8892b0;
  --green:       #00d68f;
  --red:         #ff4757;

  /* Gradients */
  --grad-gold:   linear-gradient(135deg,#ffcc00,#d4a017);
  --grad-gold-h: linear-gradient(90deg,#ffcc00,#ffe066,#d4a017);
  --grad-navy:   linear-gradient(160deg,#080e37,#0d1544);
  --grad-card:   linear-gradient(135deg,#0f1860 0%,#080e37 100%);
  --grad-dark:   linear-gradient(180deg,#050b28,#080e37);
  --grad-glow:   radial-gradient(ellipse at 50% 0%,rgba(255,204,0,0.18) 0%,transparent 65%);

  /* Spacing */
  --section-py:    90px;
  --container-max: 1200px;
  --container-px:  24px;
  --gap:           24px;

  /* Border radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 999px;

  /* Shadows */
  --s-gold:  0 0 40px rgba(255,204,0,0.25);
  --s-card:  0 4px 32px rgba(0,0,0,0.45);
  --s-glow:  0 0 80px rgba(255,204,0,0.15);
  --s-btn:   0 6px 24px rgba(255,204,0,0.38);

  /* Transitions */
  --t:   0.3s ease;
  --t-s: 0.6s cubic-bezier(0.16,1,0.3,1);
}

/* ── 2. CSS Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--navy);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── 3. Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(32px,5vw,56px); font-weight: 900; }
h2 { font-size: clamp(26px,4vw,44px); font-weight: 800; }
h3 { font-size: clamp(18px,2.5vw,26px); font-weight: 700; }
h4 { font-size: clamp(16px,2vw,20px); font-weight: 600; }
p  { color: var(--text-light); line-height: 1.7; }
strong { color: var(--white); }
.text-gold    { color: var(--gold) !important; }
.text-muted   { color: var(--text-muted) !important; }
.text-white   { color: var(--white) !important; }
.text-center  { text-align: center; }
.text-left    { text-align: left; }

/* ── 4. Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.section-py  { padding: var(--section-py) 0; }
.section-dark     { background: var(--navy); }
.section-mid      { background: var(--navy-mid); }
.section-deep     { background: var(--navy-deep); }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); }
.grid-6 { display: grid; grid-template-columns: repeat(6,1fr); gap: var(--gap); }
.flex   { display: flex; }
.flex-c { display: flex; align-items: center; }
.flex-cc{ display: flex; align-items: center; justify-content: center; }
.flex-sb{ display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: 12px; }
.gap    { gap: var(--gap); }
.gap-lg { gap: 40px; }

/* ── 5. Section Headings ───────────────────────────────────── */
.sec-head {
  text-align: center;
  margin-bottom: 56px;
}
.sec-tag {
  display: inline-block;
  background: rgba(255,204,0,0.1);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,204,0,0.2);
  margin-bottom: 16px;
}
.sec-title {
  font-size: clamp(26px,4vw,44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.sec-title span,
.sec-title .gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.divider-gold {
  width: 56px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ── 6. Buttons ────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grad-gold);
  color: var(--navy-deep) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all var(--t);
  box-shadow: var(--s-btn);
  letter-spacing: 0.3px;
  -webkit-text-fill-color: var(--navy-deep);
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent);
  transition: left 0.5s ease;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255,204,0,0.55);
}
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 31px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t);
  letter-spacing: 0.3px;
}
.btn-outline:hover {
  background: rgba(255,204,0,0.1);
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(255,204,0,0.25);
}

.btn-sm { padding: 9px 22px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 17px; }

/* ── 7. Cards ──────────────────────────────────────────────── */
.card {
  background: var(--grad-card);
  border: 1px solid rgba(255,204,0,0.08);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: all var(--t-s);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,rgba(255,204,0,0.05),transparent);
  opacity: 0;
  transition: opacity var(--t);
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,204,0,0.3);
  box-shadow: var(--s-card), 0 0 40px rgba(255,204,0,0.1);
}
.card:hover::after { opacity: 1; }

/* ── 8. Animations ─────────────────────────────────────────── */
@keyframes fadeUp  { from { opacity:0; transform:translateY(40px) } to { opacity:1; transform:none } }
@keyframes fadeIn  { from { opacity:0 } to { opacity:1 } }
@keyframes slideL  { from { opacity:0; transform:translateX(-44px) } to { opacity:1; transform:none } }
@keyframes slideR  { from { opacity:0; transform:translateX(44px) } to { opacity:1; transform:none } }
@keyframes scaleUp { from { opacity:0; transform:scale(0.82) } to { opacity:1; transform:scale(1) } }
@keyframes float   { 0%,100% { transform:translateY(0) } 50% { transform:translateY(-12px) } }
@keyframes pulse-g { 0%,100% { box-shadow:0 0 20px rgba(255,204,0,0.3) } 50% { box-shadow:0 0 50px rgba(255,204,0,0.6) } }
@keyframes shimmer { 0% { background-position:-200% 0 } 100% { background-position:200% 0 } }
@keyframes glow-border {
  0%,100% { border-color:rgba(255,204,0,0.2) }
  50%     { border-color:rgba(255,204,0,0.6) }
}
@keyframes spin    { to { transform:rotate(360deg) } }
@keyframes count-up { from { opacity:0 } to { opacity:1 } }
@keyframes particle {
  0%   { transform:translateY(0) scale(1); opacity:0.7 }
  100% { transform:translateY(-100vh) scale(0); opacity:0 }
}
@keyframes gradient-shift {
  0%,100% { background-position: 0% 50% }
  50%     { background-position: 100% 50% }
}

/* Scroll animation classes — JS adds .is-visible */
.anim-fade-up,
.anim-fade-in,
.anim-slide-l,
.anim-slide-r,
.anim-scale { will-change: opacity, transform; }

.anim-fade-up  { opacity:0; transform:translateY(40px); transition:opacity .7s ease,transform .7s ease; }
.anim-fade-in  { opacity:0; transition:opacity .8s ease; }
.anim-slide-l  { opacity:0; transform:translateX(-44px); transition:opacity .7s ease,transform .7s ease; }
.anim-slide-r  { opacity:0; transform:translateX(44px); transition:opacity .7s ease,transform .7s ease; }
.anim-scale    { opacity:0; transform:scale(0.85); transition:opacity .7s ease,transform .7s ease; }

.anim-fade-up.is-visible,
.anim-fade-in.is-visible,
.anim-slide-l.is-visible,
.anim-slide-r.is-visible,
.anim-scale.is-visible  { opacity:1; transform:none; }

/* Stagger grid children */
.anim-stagger > * {
  opacity:0; transform:translateY(32px);
  transition:opacity .6s ease, transform .6s ease;
}
.anim-stagger.is-visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:.05s }
.anim-stagger.is-visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.12s }
.anim-stagger.is-visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.19s }
.anim-stagger.is-visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.26s }
.anim-stagger.is-visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:.33s }
.anim-stagger.is-visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:.40s }
.anim-stagger.is-visible > *:nth-child(7) { opacity:1; transform:none; transition-delay:.47s }
.anim-stagger.is-visible > *:nth-child(8) { opacity:1; transform:none; transition-delay:.54s }

/* ── 9. Header & Navigation ────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(8,14,55,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,204,0,0.08);
  transition: all var(--t);
}
#site-header.scrolled {
  background: rgba(5,11,40,0.97);
  border-bottom-color: rgba(255,204,0,0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

/* Logo */
.site-logo { flex-shrink: 0; }
.site-logo img {
  height: 44px;
  width: auto;
  transition: opacity var(--t);
}
.site-logo:hover img { opacity: 0.85; }

/* Main Nav — works with both WP <ul><li><a> output and fallback direct <a> */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

/* WP menu: make <ul> and <li> flex/inline */
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.main-nav > ul > li {
  position: relative;
  display: flex;
  align-items: center;
}

/* All nav links (both WP <li><a> and fallback direct <a>) */
.main-nav a {
  display: block;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all var(--t);
  white-space: nowrap;
  position: relative;
  text-decoration: none;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: all var(--t);
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { left: 14px; right: 14px; }
.main-nav .current-menu-item > a { color: var(--gold); }
.main-nav .current-menu-item > a::after { left: 14px; right: 14px; }

/* Submenu */
.main-nav .menu-item-has-children { position: relative; }
.main-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,204,0,0.12);
  border-radius: var(--r-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t);
  z-index: 100;
  box-shadow: var(--s-card);
  list-style: none;
  margin: 0;
  flex-direction: column;
  display: flex;
}
.main-nav .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .sub-menu li { width: 100%; }
.main-nav .sub-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 0;
  white-space: nowrap;
}
.main-nav .sub-menu a::after { display: none; }
.main-nav .sub-menu a:hover { background: rgba(255,204,0,0.08); color: var(--gold); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-cta .btn-outline { padding: 9px 20px; font-size: 13px; }
.header-cta .btn-gold    { padding: 9px 22px; font-size: 13px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,11,40,0.98);
  backdrop-filter: blur(20px);
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--t);
  padding: 80px 24px 40px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  padding: 12px 24px;
  text-align: center;
  border-radius: var(--r-sm);
  transition: color var(--t);
  width: 100%;
  text-align: center;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-cta {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── 10. Hero / Slider ─────────────────────────────────────── */

#home-hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy-deep);
  overflow: hidden;
  display: flex;
  align-items: center;
}
#home-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-dark);
  z-index: 0;
}
#home-hero .hero-glow {
  position: absolute;
  width: 80vw; height: 60vh;
  background: radial-gradient(ellipse,rgba(255,204,0,0.12) 0%,transparent 70%);
  top: -10%; left: 10%;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}
/* particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle linear infinite;
}
#home-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,204,0,0.1);
  border: 1px solid rgba(255,204,0,0.25);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--r-full);
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-g 2s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(38px,6vw,72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .gold-text {
  background: var(--grad-gold-h);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.hero-sub {
  font-size: clamp(15px,2vw,18px);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Slider override */
#home-hero .ssslider-wrap,
#home-hero .rsfr_container { min-height: calc(100vh - 70px) !important; }
#home-hero.has-slider { min-height: unset; }
#home-hero.has-slider .hero-content { display: none; }

/* ── 11. Trust Bar ─────────────────────────────────────────── */
#trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,204,0,0.1);
  border-bottom: 1px solid rgba(255,204,0,0.1);
  padding: 20px 0;
}
.trust-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
}
.trust-item .ti-icon {
  width: 36px; height: 36px;
  background: rgba(255,204,0,0.1);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── 12. Game Category Cards ───────────────────────────────── */
#game-cats { background: var(--navy); }
.game-cats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.game-cat-card {
  background: var(--grad-card);
  border: 1px solid rgba(255,204,0,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--t-s);
  aspect-ratio: 1/1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 20px;
}
.game-cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,14,55,0.95) 30%, transparent 80%);
  z-index: 1;
  transition: opacity var(--t);
}
.game-cat-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255,204,0,0.35);
  box-shadow: var(--s-gold);
}
.game-cat-card .cat-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-s);
}
.game-cat-card:hover .cat-img { transform: scale(1.08); }
.game-cat-card .cat-icon {
  position: relative;
  z-index: 2;
  width: 52px; height: 52px;
  background: rgba(255,204,0,0.12);
  border: 1px solid rgba(255,204,0,0.25);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 24px;
  transition: all var(--t);
}
.game-cat-card:hover .cat-icon {
  background: var(--gold);
  color: var(--navy);
}
.game-cat-card .cat-name {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: color var(--t);
}
.game-cat-card:hover .cat-name { color: var(--gold); }

/* ── 13. Providers / Tabs ──────────────────────────────────── */
#providers { background: var(--navy-mid); }
.tab-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.tab-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--t);
}
.tab-btn.active,
.tab-btn:hover {
  background: rgba(255,204,0,0.12);
  border-color: var(--gold);
  color: var(--gold);
}
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px,1fr));
  gap: 16px;
}
.provider-logo {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 18px 12px;
  display: flex; align-items: center; justify-content: center;
  min-height: 70px;
  transition: all var(--t);
  cursor: pointer;
}
.provider-logo img {
  max-height: 36px;
  width: auto;
  filter: brightness(0.7) grayscale(0.4);
  transition: filter var(--t);
}
.provider-logo:hover {
  border-color: rgba(255,204,0,0.3);
  background: rgba(255,204,0,0.06);
}
.provider-logo:hover img { filter: brightness(1) grayscale(0); }
.provider-logo-text {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

/* ── 14. Game Info Cards ───────────────────────────────────── */
#game-info { background: var(--navy); }
.game-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gi-card {
  background: var(--grad-card);
  border: 1px solid rgba(255,204,0,0.08);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all var(--t-s);
  position: relative;
  overflow: hidden;
}
.gi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform var(--t);
}
.gi-card:hover { border-color: rgba(255,204,0,0.22); transform: translateY(-5px); }
.gi-card:hover::before { transform: scaleX(1); }
.gi-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.gi-card h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
}
.gi-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.gi-card .btn-outline { font-size: 13px; padding: 9px 22px; }
.gi-card-icon {
  width: 56px; height: 56px;
  background: rgba(255,204,0,0.1);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 20px;
}

/* ── 15. How To Steps ──────────────────────────────────────── */
#how-to { background: var(--navy-mid); }
.steps-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 48px; left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
  z-index: 0;
}
.step-card {
  background: var(--grad-card);
  border: 1px solid rgba(255,204,0,0.08);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all var(--t-s);
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,204,0,0.3);
  box-shadow: var(--s-card);
}
.step-num {
  width: 54px; height: 54px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 900;
  color: var(--navy-deep);
  box-shadow: 0 0 24px rgba(255,204,0,0.4);
}
.step-card h3 {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── 16. Promotions ────────────────────────────────────────── */
#promos { background: var(--navy); }
.promos-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.promo-card {
  background: var(--grad-card);
  border: 1px solid rgba(255,204,0,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-s);
}
.promo-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,204,0,0.3);
  box-shadow: var(--s-card);
}
.promo-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--navy-light);
  overflow: hidden;
}
.promo-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-s);
}
.promo-card:hover .promo-card-img img { transform: scale(1.06); }
.promo-card-body { padding: 24px; }
.promo-badge {
  display: inline-block;
  background: rgba(255,204,0,0.12);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 10px;
}
.promo-card-body h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}
.promo-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ── 17. App Download ──────────────────────────────────────── */
#app-download { background: var(--navy-mid); }
.download-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.download-title { font-size: clamp(28px,3.5vw,42px); margin-bottom: 16px; }
.download-sub { color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.app-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,204,0,0.2);
  border-radius: var(--r-md);
  padding: 12px 22px;
  transition: all var(--t);
  color: var(--white);
  text-decoration: none;
}
.app-btn:hover {
  background: rgba(255,204,0,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.app-btn-icon { font-size: 28px; color: var(--gold); }
.app-btn-text { text-align: left; }
.app-btn-text span { display: block; font-size: 11px; color: var(--text-muted); }
.app-btn-text strong { font-size: 16px; color: var(--white); }
.qr-boxes { display: flex; gap: 20px; }
.qr-box {
  background: var(--grad-card);
  border: 1px solid rgba(255,204,0,0.12);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
  flex: 1;
}
.qr-img {
  width: 120px; height: 120px;
  background: var(--white);
  border-radius: var(--r-sm);
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
}
.qr-label { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.download-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.download-visual .phone-mockup {
  width: 240px;
  background: var(--navy-card);
  border: 2px solid rgba(255,204,0,0.2);
  border-radius: 32px;
  padding: 24px;
  animation: float 6s ease-in-out infinite;
}
.download-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(ellipse,rgba(255,204,0,0.15),transparent 70%);
  border-radius: 50%;
}

/* ── 18. Features / Why Choose ─────────────────────────────── */
#features { background: var(--navy); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.feature-card {
  background: var(--grad-card);
  border: 1px solid rgba(255,204,0,0.08);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  transition: all var(--t-s);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform var(--t);
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,204,0,0.25);
  box-shadow: var(--s-card);
}
.feature-card:hover::after { transform: scaleX(1); }
.fc-icon {
  width: 60px; height: 60px;
  background: rgba(255,204,0,0.1);
  border: 1px solid rgba(255,204,0,0.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 28px;
  transition: all var(--t);
}
.feature-card:hover .fc-icon {
  background: var(--grad-gold);
  color: var(--navy-deep);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(255,204,0,0.4);
}
.feature-card h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── 19. Banks / Payments ──────────────────────────────────── */
#payments { background: var(--navy-mid); }
.banks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px,1fr));
  gap: 16px;
}
.bank-logo {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 16px 10px;
  display: flex; align-items: center; justify-content: center;
  min-height: 60px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.5px;
  transition: all var(--t);
}
.bank-logo:hover {
  border-color: rgba(255,204,0,0.25);
  background: rgba(255,204,0,0.06);
  color: var(--gold);
}
.bank-logo img {
  max-height: 32px;
  width: auto;
  filter: brightness(0.65) grayscale(0.5);
  transition: filter var(--t);
}
.bank-logo:hover img { filter: brightness(1) grayscale(0); }

/* ── 20. FAQ Accordion ─────────────────────────────────────── */
#faq { background: var(--navy); }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--grad-card);
  border: 1px solid rgba(255,204,0,0.08);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item.open { border-color: rgba(255,204,0,0.25); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  gap: 16px;
  user-select: none;
}
.faq-q .faq-icon {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,204,0,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  transition: all var(--t);
}
.faq-item.open .faq-q .faq-icon {
  background: var(--gold);
  color: var(--navy-deep);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ── 21. CTA Banner ────────────────────────────────────────── */
#cta-banner {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  z-index: 0;
}
#cta-banner .container { position: relative; z-index: 1; text-align: center; }
#cta-banner h2 {
  font-size: clamp(28px,4vw,50px);
  color: var(--white);
  margin-bottom: 14px;
}
#cta-banner p { color: var(--text-muted); margin-bottom: 36px; font-size: 17px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── 22. Stats / Counters ──────────────────────────────────── */
#stats-bar { background: var(--navy-mid); border-top: 1px solid rgba(255,204,0,0.08); border-bottom: 1px solid rgba(255,204,0,0.08); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(28px,4vw,42px);
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── 23. Footer ────────────────────────────────────────────── */
#site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,204,0,0.1);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand img { width: 200px; height: auto; max-width: 200px; margin-bottom: 16px; }
.footer-desc {
  font-size: 13px;
  color: #b0b8d0; /* ~10:1 on #050b28 footer bg */
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: all var(--t);
  text-decoration: none;
}
.social-btn:hover {
  background: rgba(255,204,0,0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,204,0,0.15);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: #b0b8d0; /* ~10:1 on #050b28 footer bg */
  transition: color var(--t);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a::before { content: '›'; font-size: 15px; color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: #b0b8d0; /* ~10:1 on #050b28 */ }
.footer-payment-logos { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-payment-logos img { height: 24px; filter: brightness(0.5) grayscale(0.5); transition: filter var(--t); }
.footer-payment-logos img:hover { filter: brightness(0.9) grayscale(0); }
.footer-disclaimer {
  font-size: 11px;
  color: #b0b8d0; /* ~10:1 on #050b28 footer bg */
  line-height: 1.6;
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 4px;
}

/* ── 24. Inner Page Hero ───────────────────────────────────── */
.inner-hero {
  background: var(--grad-dark);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,204,0,0.1);
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  opacity: 0.5;
}
.inner-hero .container { position: relative; z-index: 1; }
.page-title {
  font-size: clamp(28px,4vw,42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.page-breadcrumb { font-size: 13px; color: var(--text-muted); }
.page-breadcrumb a { color: var(--gold); }
.page-content {
  padding: 56px var(--container-px);
  color: var(--text-light);
  line-height: 1.8;
  max-width: var(--container-max);
  margin: 0 auto;
}
.page-content h2, .page-content h3 { margin: 32px 0 14px; }
.page-content p  { margin-bottom: 16px; }
.page-content ul, .page-content ol { padding-left: 24px; margin-bottom: 16px; }
.page-content li { margin-bottom: 8px; color: var(--text-light); list-style-type: disc; }

/* ── 25. Game Template ─────────────────────────────────────── */
.game-hero { padding: 80px 0; }
.game-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.game-features-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.game-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-light); }
.game-feature-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.game-img-box {
  background: var(--grad-card);
  border: 1px solid rgba(255,204,0,0.12);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.game-img-box img { width: 100%; height: 100%; object-fit: cover; }
.provider-section { padding: var(--section-py) 0; background: var(--navy-mid); }
.game-info-section { padding: var(--section-py) 0; background: var(--navy); }
.game-info-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.game-info-body h3 { margin-bottom: 12px; }
.game-info-body p { color: var(--text-muted); margin-bottom: 16px; font-size: 14px; }
.game-sidebar {
  background: var(--grad-card);
  border: 1px solid rgba(255,204,0,0.1);
  border-radius: var(--r-lg);
  padding: 24px;
}
.game-sidebar h4 { color: var(--gold); margin-bottom: 16px; font-size: 15px; }
.sidebar-list { display: flex; flex-direction: column; gap: 8px; }
.sidebar-list li { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.sidebar-list li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── 26. Promotions Template ───────────────────────────────── */
.promo-filter { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; justify-content: center; }
.filter-btn { font-size: 13px; padding: 8px 20px; }
.promos-listing {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

/* ── 27. Download Template ─────────────────────────────────── */
.dl-hero { background: var(--navy); padding: 80px 0; }
.dl-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.dl-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.dl-feature {
  background: var(--grad-card);
  border: 1px solid rgba(255,204,0,0.08);
  border-radius: var(--r-md);
  padding: 16px;
}
.dl-feature-icon { font-size: 24px; color: var(--gold); margin-bottom: 8px; }
.dl-feature h4 { font-size: 14px; margin-bottom: 4px; }
.dl-feature p { font-size: 12px; color: var(--text-muted); }
.install-steps { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.install-step { display: flex; align-items: flex-start; gap: 20px; }
.is-num {
  width: 40px; height: 40px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  color: var(--navy-deep);
  flex-shrink: 0;
}
.is-body h4 { margin-bottom: 4px; font-size: 15px; }
.is-body p  { font-size: 13px; color: var(--text-muted); }

/* ── 28. Auth / Register Guide ─────────────────────────────── */
.auth-steps { display: flex; flex-direction: column; gap: 32px; max-width: 720px; margin: 0 auto; }
.auth-step {
  background: var(--grad-card);
  border: 1px solid rgba(255,204,0,0.08);
  border-radius: var(--r-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}
.auth-step-num {
  width: 56px; height: 56px;
  background: var(--grad-gold);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900;
  color: var(--navy-deep);
}
.auth-step h3 { font-size: 18px; margin-bottom: 8px; }
.auth-step p  { font-size: 13px; color: var(--text-muted); }

/* ── 29. Error 404 ─────────────────────────────────────────── */
.error-404-page { background: var(--navy); min-height: 80vh; display: flex; align-items: center; }
.error-num {
  font-size: clamp(80px,15vw,180px);
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

/* ── 30. Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 64px; }
  .game-cats-grid  { grid-template-columns: repeat(3,1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .features-grid   { grid-template-columns: repeat(2,1fr); }
  .download-wrap   { gap: 40px; }
  .game-info-content { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  :root { --section-py: 48px; --container-px: 16px; }
  .main-nav, .header-cta .btn-outline { display: none !important; }
  .hamburger { display: flex; }
  .game-cats-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
  .game-info-grid { grid-template-columns: 1fr; }
  .promos-grid, .promos-listing { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }
  .features-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .download-wrap  { grid-template-columns: 1fr; }
  .game-hero-inner { grid-template-columns: 1fr; }
  .dl-hero-inner  { grid-template-columns: 1fr; }
  .hero-stats     { gap: 24px; }
  #home-hero      { min-height: 90vh; }
  .hero-title     { font-size: 36px; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .game-info-content { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .game-cats-grid { grid-template-columns: repeat(3,1fr); }
  .steps-row      { grid-template-columns: 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .hero-btns, .app-btns { flex-direction: column; }
  .dl-features    { grid-template-columns: 1fr; }
  .auth-step      { grid-template-columns: 1fr; }
  .qr-boxes       { flex-direction: column; }
}

/* ── 31. Scroll-to-top btn ─────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 44px; height: 44px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-deep);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--t);
  z-index: 888;
  box-shadow: var(--s-btn);
  border: none;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,204,0,0.55); }

/* ── 32. Glow orb (decorative) ─────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(255,204,0,0.12),transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── 33. Misc helpers ──────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.d-none { display: none; }
.pos-rel { position: relative; }
.overflow-h { overflow: hidden; }
.rounded   { border-radius: var(--r-md); }
.rounded-lg { border-radius: var(--r-lg); }
.w-100 { width: 100%; }
.post-thumb { margin-bottom: 32px; border-radius: var(--r-lg); overflow: hidden; }
.post-meta  { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

/* WP alignment classes */
.aligncenter { margin: 0 auto 20px; }
.alignleft   { float: left; margin: 0 24px 16px 0; }
.alignright  { float: right; margin: 0 0 16px 24px; }
.wp-caption  { max-width: 100%; }
