/* ============================================================
   U2 Official Casino My — Dark Luxury Design System
   Domain: u2officialcasinomy.com
   ============================================================ */

:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #9a7b1e;
  --gold-glow: rgba(201,168,76,0.25);
  --red: #d42b3e;
  --red-dark: #a81e2e;
  --deep: #04040e;
  --bg: #07071a;
  --bg2: #0c0c22;
  --bg3: #101028;
  --card: #111130;
  --card-hover: #171748;
  --text: #e0e0f4;
  --text-muted: #6868a0;
  --text-soft: #9898c0;
  --border: rgba(201,168,76,0.15);
  --border-strong: rgba(201,168,76,0.4);
  --shadow: 0 4px 24px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 24px rgba(201,168,76,0.18);
  --shadow-hover: 0 12px 48px rgba(0,0,0,0.8);
  --radius: 0.625rem;
  --radius-lg: 1rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--text);
}

h3 { font-size: 1.375rem; color: var(--text); }
h4 { font-size: 1.125rem; color: var(--text); }

p { margin-bottom: 1rem; color: var(--text-soft); }

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Scroll Progress Bar ─── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.875rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #05050f;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.5);
  color: #05050f;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-red {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: white;
  box-shadow: 0 4px 16px rgba(212,43,62,0.3);
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,43,62,0.45);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.0625rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,7,26,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(4,4,14,0.97);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 68px;
  max-width: 1260px;
  margin: 0 auto;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--gold);
  flex-shrink: 0;
}

.logo:hover { color: var(--gold-light); }

.logo span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-main {
  display: none;
  gap: 0.125rem;
}

@media (min-width: 768px) {
  .nav-main { display: flex; }
}

.nav-main a {
  padding: 0.5rem 0.875rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  position: relative;
}

.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-main a:hover, .nav-main a.active {
  color: var(--gold);
}

.nav-main a:hover::after, .nav-main a.active::after {
  left: 0.875rem;
  right: 0.875rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  gap: 0.25rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.25rem;
}

.lang-switch a {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-radius: 4px;
  font-weight: 500;
}

.lang-switch a.active, .lang-switch a:hover {
  background: var(--gold);
  color: #05050f;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.375rem 0.625rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.mobile-toggle:hover { background: rgba(201,168,76,0.1); }

@media (max-width: 767px) {
  .mobile-toggle { display: block; }
  .header-actions .btn { display: none; }
  .header-actions .btn:last-of-type { display: inline-flex; }
  .lang-switch { display: none; }
}

/* ─── Mobile Menu ─── */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  gap: 0.25rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 0.75rem 1rem;
  color: var(--text-soft);
  font-weight: 500;
  border-radius: var(--radius);
  border-left: 2px solid transparent;
}

.mobile-menu a:hover, .mobile-menu a.active {
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  border-left-color: var(--gold);
}

.mobile-menu .mobile-cta {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.mobile-menu .mobile-cta a { flex: 1; text-align: center; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: blur(2px) brightness(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(100,20,180,0.12) 0%, transparent 60%),
    linear-gradient(160deg, rgba(4,4,14,0.7) 0%, rgba(12,12,34,0.5) 100%);
}

/* Subtle star dots */
.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(201,168,76,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 15%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 75% 35%, rgba(201,168,76,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 60%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 70%, rgba(201,168,76,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 80%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 90%, rgba(201,168,76,0.4) 0%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 0 3rem;
}

.hero-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
}

.hero-content { max-width: 620px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border-strong);
  color: var(--gold);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(224,224,244,0.75);
  margin-bottom: 2rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light);
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-cards-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mini-stat-card {
  background: rgba(17,17,48,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  backdrop-filter: blur(8px);
}

.mini-stat-card .num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.mini-stat-card .lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ─── Trust Strip ─── */
.trust-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.125rem 0;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item .icon { font-size: 1.125rem; }
.trust-item .label { color: var(--text-soft); }

/* ─── Sections ─── */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg2);
}

.section-dark {
  background: var(--deep);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header h2 { margin-bottom: 0.75rem; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header p { font-size: 1.0625rem; }

/* ─── Feature Blocks (alternating) ─── */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-block:last-child { border-bottom: none; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

@media (max-width: 767px) {
  .feature-block { grid-template-columns: 1fr; direction: ltr; gap: 2rem; padding: 2.5rem 0; }
  .feature-block.reverse > * { direction: ltr; }
}

.feature-icon-wrap {
  width: 4rem;
  height: 4rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.feature-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
  color: var(--text);
}

.feature-text p { font-size: 1rem; line-height: 1.7; }

.feature-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual-inner {
  padding: 2rem;
  text-align: center;
}

.feature-visual .big-icon { font-size: 5rem; opacity: 0.6; }

/* ─── Cards Grid ─── */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  background: var(--card-hover);
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.card:hover::before { opacity: 1; }

.card-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: block;
}

.card h3 { color: var(--text); margin-bottom: 0.625rem; }
.card p { font-size: 0.9375rem; }

/* ─── Game Cards ─── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.game-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.game-card img, .game-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.game-img-placeholder {
  background: linear-gradient(135deg, #0d0d2e 0%, #1a1a4a 40%, #0a0a20 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}

.game-img-placeholder::before { content: '🎮'; }

.game-img-placeholder::after {
  content: attr(data-name);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(201,168,76,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: absolute;
  bottom: 0.625rem;
}

.game-card-body { padding: 1rem 1.25rem; }

.game-card-body h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.game-card-provider {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.game-card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: rgba(212,43,62,0.2);
  color: #f06080;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ─── Stats ─── */
.stats-band {
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 50%, rgba(100,20,180,0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

.stat-sub {
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

@media (max-width: 767px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(even) { border-right: none; }
}

/* ─── Promo Banner ─── */
.promo-banner {
  background: linear-gradient(135deg, #1a0a08 0%, #2a1510 50%, #180a08 100%);
  border: 1px solid rgba(212,43,62,0.3);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  position: relative;
}

.promo-banner::before {
  content: '🎰';
  position: absolute;
  right: 2rem;
  font-size: 8rem;
  opacity: 0.08;
}

.promo-banner-text h3 {
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.promo-banner-text p { color: var(--text-soft); margin: 0; }

@media (max-width: 600px) {
  .promo-banner { flex-direction: column; text-align: center; }
}

/* ─── Reviews ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-gold);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9375rem;
  margin-bottom: 0.875rem;
  letter-spacing: 0.05em;
}

.review-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-text::before { content: '"'; }
.review-text::after { content: '"'; }

.review-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: #05050f;
  flex-shrink: 0;
}

.review-name { font-weight: 600; color: var(--text); font-size: 0.9375rem; }
.review-meta { font-size: 0.8rem; color: var(--text-muted); }

.rating-summary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: fit-content;
}

.rating-big {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.rating-details { display: flex; flex-direction: column; gap: 0.25rem; }
.rating-stars { color: var(--gold); font-size: 1.125rem; }
.rating-count { font-size: 0.875rem; color: var(--text-muted); }

/* ─── Blog ─── */
.blog-featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) { .blog-featured { grid-template-columns: 1fr; } }

.blog-side { display: flex; flex-direction: column; gap: 1.5rem; }

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: block;
}

.blog-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-card.small img { aspect-ratio: 3/1; }

.blog-card-body { padding: 1.25rem; }

.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.625rem;
}

.blog-card h3 {
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-card.large h3 { font-size: 1.375rem; }

.blog-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.625rem;
}

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-gold);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: var(--card);
  font-weight: 600;
  color: var(--text);
  gap: 1rem;
}

.faq-q:hover { background: var(--card-hover); color: var(--gold); }

.faq-item.open .faq-q { color: var(--gold); background: var(--card-hover); }

.faq-chevron {
  font-size: 0.75rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 1.25rem 1.5rem;
  background: rgba(7,7,26,0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-soft);
  border-top: 1px solid var(--border);
}

.faq-item.open .faq-a { display: block; }

/* ─── Breadcrumbs ─── */
.breadcrumbs {
  padding: 0.875rem 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { margin: 0 0.5rem; color: var(--text-muted); opacity: 0.4; }
.breadcrumbs span:last-child { color: var(--gold); }

/* ─── Page Hero ─── */
.page-hero {
  background: linear-gradient(160deg, var(--bg2) 0%, var(--deep) 100%);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.page-hero .container { position: relative; }

.page-hero h1 { margin-bottom: 1rem; }

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
  color: var(--text-soft);
}

/* ─── Article Content ─── */
.article-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.875rem;
  padding: 1rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.article-meta strong { color: var(--gold); }

.article-wrap h2 {
  font-size: 1.5rem;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.article-wrap h3 {
  font-size: 1.125rem;
  color: var(--gold-light);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.article-wrap ul, .article-wrap ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-wrap li {
  margin-bottom: 0.5rem;
  color: var(--text-soft);
}

.article-tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 0.3rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* ─── Info Box ─── */
.info-box {
  background: rgba(201,168,76,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.info-box p { margin: 0; color: var(--text-soft); }

.warning-box {
  background: rgba(212,43,62,0.08);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.warning-box p { margin: 0; color: var(--text-soft); }

/* ─── Tables ─── */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; border-radius: var(--radius); border: 1px solid var(--border); }

table { width: 100%; border-collapse: collapse; }

thead { background: rgba(201,168,76,0.08); }

th {
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

td {
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-soft);
  border-top: 1px solid var(--border);
}

tr:hover td { background: rgba(201,168,76,0.03); }

/* ─── Badges ─── */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-gold { background: rgba(201,168,76,0.15); color: var(--gold); }
.badge-green { background: rgba(0,200,120,0.15); color: #00c878; }
.badge-red { background: rgba(212,43,62,0.15); color: #f06080; }
.badge-blue { background: rgba(80,130,255,0.15); color: #7ca8ff; }

/* ─── Step List ─── */
.step-list { list-style: none; counter-reset: steps; padding: 0; }

.step-list li {
  counter-increment: steps;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.step-list li::before {
  content: counter(steps);
  min-width: 2.25rem;
  height: 2.25rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #05050f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}

.footer-brand {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.875rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--border-strong);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--gold); padding-left: 0.375rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.25rem 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ─── WhatsApp Float ─── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.25rem;
  height: 3.25rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}

/* ─── Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Related Posts ─── */
.related-posts { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.related-posts h3 { font-size: 1.25rem; color: var(--text); margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }

/* ─── Payment Icons Strip ─── */
.payment-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.payment-chip {
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-soft);
}

/* ─── Utilities ─── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

@media (max-width: 767px) {
  .section { padding: 3.5rem 0; }
  .hero { min-height: auto; }
  .hero-inner { padding: 3rem 0 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
