/* TROPAWIN Design System - Static HTML Version */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS Variables === */
:root {
  --background: hsl(30, 25%, 94%);
  --foreground: hsl(25, 30%, 15%);
  --card: hsl(35, 25%, 96%);
  --card-foreground: hsl(25, 30%, 15%);
  --primary: hsl(25, 40%, 25%);
  --primary-foreground: hsl(40, 30%, 95%);
  --secondary: hsl(35, 30%, 92%);
  --secondary-foreground: hsl(25, 40%, 25%);
  --gold: hsl(43, 90%, 50%);
  --gold-foreground: hsl(25, 40%, 15%);
  --gold-light: hsl(45, 80%, 60%);
  --gold-dark: hsl(40, 85%, 40%);
  --coffee: hsl(25, 40%, 25%);
  --coffee-light: hsl(30, 25%, 40%);
  --coffee-dark: hsl(20, 45%, 15%);
  --muted: hsl(30, 15%, 90%);
  --muted-foreground: hsl(25, 15%, 45%);
  --border: hsl(30, 20%, 85%);
  --radius: 0.5rem;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Cinzel', serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* === Container === */
.container { max-width: 1400px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* === Gradients & Effects === */
.text-gold-gradient {
  background: linear-gradient(135deg, hsl(43, 90%, 55%) 0%, hsl(35, 95%, 45%) 50%, hsl(43, 90%, 55%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-hero-gradient { background: linear-gradient(180deg, hsl(20, 45%, 12%) 0%, hsl(25, 40%, 20%) 100%); }
.bg-gold-gradient { background: linear-gradient(135deg, hsl(43, 90%, 55%) 0%, hsl(35, 95%, 45%) 50%, hsl(43, 90%, 55%) 100%); }
.bg-coffee-gradient { background: linear-gradient(135deg, hsl(25, 40%, 25%) 0%, hsl(20, 45%, 15%) 100%); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s;
  border: none;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, hsl(43, 90%, 55%), hsl(35, 95%, 45%));
  color: var(--coffee-dark);
  box-shadow: 0 4px 15px hsla(43, 90%, 50%, 0.3);
}
.btn-gold:hover { box-shadow: 0 6px 25px hsla(43, 90%, 50%, 0.5); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-hero {
  background: linear-gradient(135deg, hsl(43, 90%, 55%), hsl(35, 95%, 45%));
  color: var(--coffee-dark);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 30px hsla(43, 90%, 50%, 0.4);
}
.btn-hero:hover { box-shadow: 0 8px 40px hsla(43, 90%, 50%, 0.6); transform: translateY(-2px); }
.btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2rem; font-size: 1.125rem; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsla(35, 25%, 96%, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.header-logo img { height: 2.5rem; width: auto; object-fit: contain; }
@media (min-width: 768px) { .header-logo img { height: 3rem; } }

/* Desktop Nav */
.desktop-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.nav-link {
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: var(--foreground);
  background: none;
  border: none;
  transition: color 0.3s;
}
.nav-dropdown-btn:hover { color: var(--gold); }
.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  padding-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; }
.nav-dropdown-inner {
  background: var(--card);
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  padding: 0.5rem 0;
  min-width: 200px;
}
.nav-dropdown-inner a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: all 0.2s;
}
.nav-dropdown-inner a:hover { color: var(--gold); background: var(--secondary); }

/* Header CTA */
.header-cta { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .header-cta { display: flex; } }

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
.mobile-menu-btn svg { width: 1.5rem; height: 1.5rem; }
.mobile-nav {
  display: none;
  padding-bottom: 1.5rem;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--foreground);
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold); }
.mobile-sub-menu { padding-left: 1rem; }
.mobile-sub-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.mobile-sub-menu a:hover { color: var(--gold); }
.mobile-cta { padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-cta .btn { width: 100%; }

/* === Footer === */
.site-footer { background: var(--coffee-dark); color: var(--primary-foreground); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0 4rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; } }
.footer-brand p { color: hsla(40, 30%, 95%, 0.7); font-size: 0.875rem; line-height: 1.7; margin: 1rem 0 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: hsla(40, 30%, 95%, 0.6); transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }
.footer-heading { font-size: 1.125rem; font-family: 'Cinzel', serif; font-weight: 600; color: var(--gold); margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: hsla(40, 30%, 95%, 0.7); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: hsla(40, 30%, 95%, 0.7); margin-bottom: 0.75rem; }
.footer-contact .icon { color: var(--gold); flex-shrink: 0; }
.payment-methods { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.payment-badge {
  padding: 0.25rem 0.5rem;
  background: hsla(30, 25%, 40%, 0.5);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  color: hsla(40, 30%, 95%, 0.7);
}
.footer-bottom {
  border-top: 1px solid hsla(40, 30%, 95%, 0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { font-size: 0.875rem; color: hsla(40, 30%, 95%, 0.5); }
.footer-bottom .disclaimer { font-size: 0.75rem; color: hsla(40, 30%, 95%, 0.4); max-width: 32rem; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(43, 90%, 55%), hsl(35, 95%, 45%));
  color: var(--coffee-dark);
  border: none;
  box-shadow: 0 4px 20px hsla(43, 90%, 50%, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.3s;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { box-shadow: 0 6px 30px hsla(43, 90%, 50%, 0.5); }

/* === Breadcrumb === */
.breadcrumb { background: var(--secondary); padding: 1rem 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.breadcrumb a { color: var(--muted-foreground); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--muted-foreground); }
.breadcrumb .current { color: var(--foreground); font-weight: 500; }

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 1024px) { .hero { min-height: 600px; } }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--coffee-dark), hsla(20, 45%, 15%, 0.6), transparent);
}
.hero-overlay-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(20, 45%, 15%, 0.5), transparent, hsla(20, 45%, 15%, 0.3));
}
.hero-content { position: relative; z-index: 10; max-width: 42rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(to right, hsla(20, 45%, 15%, 0.8), hsla(25, 40%, 25%, 0.6));
  border: 1px solid hsla(43, 90%, 50%, 0.5);
  border-radius: 9999px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px hsla(43, 90%, 50%, 0.1);
}
.hero-badge .pulse-dot {
  position: relative;
  width: 0.625rem;
  height: 0.625rem;
}
.hero-badge .pulse-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gold);
  animation: ping 1.5s infinite;
}
.hero-badge .pulse-dot::after {
  content: '';
  position: relative;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--gold);
}
@keyframes ping { 0% { transform: scale(1); opacity: 0.75; } 100% { transform: scale(2); opacity: 0; } }
.hero-badge span { font-size: 0.875rem; font-weight: 600; color: var(--gold); letter-spacing: 0.025em; }
.hero h1 { font-size: 2.25rem; font-weight: 700; color: var(--primary-foreground); margin-bottom: 1.5rem; line-height: 1.1; }
@media (min-width: 768px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
.hero h1 .subtitle { display: block; font-size: 1.5rem; margin-top: 0.5rem; font-weight: 400; }
@media (min-width: 768px) { .hero h1 .subtitle { font-size: 1.875rem; } }
@media (min-width: 1024px) { .hero h1 .subtitle { font-size: 2.25rem; } }
.hero-desc { font-size: 1.125rem; color: hsla(40, 30%, 95%, 0.9); margin-bottom: 2rem; line-height: 1.7; max-width: 36rem; }
@media (min-width: 768px) { .hero-desc { font-size: 1.25rem; } }
.hero-features { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .hero-features { grid-template-columns: repeat(2, 1fr); } }
.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary-foreground);
  background: linear-gradient(to right, hsla(20, 45%, 15%, 0.7), hsla(25, 40%, 25%, 0.5));
  backdrop-filter: blur(12px);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid hsla(43, 90%, 50%, 0.2);
  transition: all 0.3s;
}
.hero-feature:hover { border-color: hsla(43, 90%, 50%, 0.4); box-shadow: 0 4px 20px hsla(43, 90%, 50%, 0.1); }
.hero-feature .icon-wrap {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: hsla(43, 90%, 50%, 0.1);
}
.hero-feature .icon-wrap svg { color: var(--gold); width: 1.25rem; height: 1.25rem; }
.hero-feature span { font-size: 0.875rem; font-weight: 500; }
.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to top, var(--background), transparent);
}

/* === Section Styles === */
.section { padding: 4rem 0; }
@media (min-width: 1024px) { .section { padding: 6rem 0; } }
.section-secondary { background: hsla(35, 30%, 92%, 0.5); }
.section-dark { background: var(--coffee-dark); color: var(--primary-foreground); }
.section-header { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
@media (min-width: 1024px) { .section-header { margin-bottom: 4rem; } }
.section-header h2 { font-size: 1.875rem; font-weight: 700; color: var(--foreground); margin-bottom: 1rem; }
@media (min-width: 768px) { .section-header h2 { font-size: 2.25rem; } }
.section-header p { color: var(--muted-foreground); font-size: 1.125rem; }

/* === Game Categories Grid === */
.game-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .game-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .game-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--card);
  box-shadow: 0 10px 40px hsla(25, 40%, 20%, 0.1);
  transition: all 0.3s;
}
.game-card:hover { box-shadow: 0 20px 60px hsla(25, 40%, 20%, 0.2); transform: translateY(-4px); }
.game-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.game-card:hover .game-card-img img { transform: scale(1.1); }
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(20, 45%, 15%, 0.9), hsla(20, 45%, 15%, 0.4), transparent);
}
.game-card .hot-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, hsl(43, 90%, 55%), hsl(35, 95%, 45%));
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coffee-dark);
}
.game-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}
.game-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}
.game-card:hover .game-card-content h3 { color: var(--gold); }
.game-card-content p { font-size: 0.875rem; color: hsla(40, 30%, 95%, 0.7); }

/* === Features Grid === */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.feature-card {
  padding: 1.5rem 2rem;
  background: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}
.feature-card:hover { border-color: hsla(43, 90%, 50%, 0.3); box-shadow: 0 10px 40px hsla(25, 40%, 20%, 0.1); }
.feature-card .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: hsla(43, 90%, 50%, 0.1);
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.feature-card:hover .icon-circle { background: var(--gold); color: var(--coffee-dark); }
.feature-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

/* === FAQ === */
.faq-section { background: var(--secondary); }
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--coffee-dark);
  border: 2px solid hsla(30, 25%, 40%, 0.3);
  border-radius: 0.75rem;
  padding: 0 1.5rem;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: hsla(43, 90%, 50%, 0.5); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  color: white;
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-question .chevron {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: white;
}
.faq-item.open .faq-question .chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: hsla(0, 0%, 100%, 0.8);
  line-height: 1.7;
  font-size: 0.9rem;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1.25rem; }

/* === Blog Cards === */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(4, 1fr); } }
.blog-grid.list-view { }
@media (min-width: 1024px) { .blog-grid.list-view { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 2px solid hsla(30, 25%, 40%, 0.3);
  transition: all 0.3s;
}
.blog-card:hover { border-color: hsla(43, 90%, 50%, 0.5); box-shadow: 0 10px 40px hsla(25, 40%, 20%, 0.15); }
.blog-card-img { height: 8rem; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img.placeholder { height: 8rem; background: linear-gradient(135deg, var(--coffee), var(--coffee-dark)); display: flex; align-items: center; justify-content: center; }
.blog-card-img.placeholder span { font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 700; color: hsla(43, 90%, 50%, 0.2); }
.blog-card-body { padding: 1.25rem; background: var(--coffee); color: white; }
.blog-card-meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.blog-category {
  padding: 0.125rem 0.5rem;
  background: hsla(43, 90%, 50%, 0.2);
  color: var(--gold);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.blog-card-body h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.5rem; transition: color 0.3s; }
.blog-card:hover .blog-card-body h3 { color: var(--gold); }
.blog-card-body .excerpt { font-size: 0.75rem; color: hsla(0, 0%, 100%, 0.8); margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-card-footer .date { font-size: 0.75rem; color: hsla(0, 0%, 100%, 0.7); }
.blog-card-footer .read-more { font-size: 0.75rem; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 0.25rem; transition: gap 0.3s; }
.blog-card:hover .blog-card-footer .read-more { gap: 0.5rem; }

/* === CTA Section === */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
@media (min-width: 1024px) { .cta-section { padding: 6rem 0; } }
.cta-content { text-align: center; max-width: 48rem; margin: 0 auto; position: relative; z-index: 10; }
.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: hsla(43, 90%, 50%, 0.2);
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.cta-content h2 { font-size: 1.875rem; font-weight: 700; color: var(--primary-foreground); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .cta-content h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .cta-content h2 { font-size: 3rem; } }
.cta-content > p { font-size: 1.125rem; color: hsla(40, 30%, 95%, 0.8); margin-bottom: 2rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
.trust-badges { margin-top: 3rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; font-size: 0.875rem; color: hsla(40, 30%, 95%, 0.6); }
.trust-badge { display: flex; align-items: center; gap: 0.5rem; }
.trust-badge .dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: hsl(142, 71%, 45%); }

/* === Page Header Banner === */
.page-header {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
@media (min-width: 1024px) { .page-header { padding: 6rem 0; } }
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: hsla(20, 45%, 15%, 0.7);
}
.page-header-content {
  position: relative;
  z-index: 10;
  text-align: center;
}
.page-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .page-header h1 { font-size: 3rem; } }
.page-header p { font-size: 1.125rem; color: hsla(40, 30%, 95%, 0.8); max-width: 42rem; margin: 0 auto; }
.page-header .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: hsla(43, 90%, 50%, 0.2);
  margin-bottom: 1.5rem;
}
.page-header .date { font-size: 0.875rem; color: hsla(40, 30%, 95%, 0.6); margin-top: 1rem; }

/* === Promotions === */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .promo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .promo-grid { grid-template-columns: repeat(3, 1fr); } }
.promo-card {
  position: relative;
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.promo-card:hover { box-shadow: 0 10px 40px hsla(25, 40%, 20%, 0.15); transform: translateY(-4px); }
.promo-card.featured { border-color: var(--gold); box-shadow: 0 4px 30px hsla(43, 90%, 50%, 0.3); }
.promo-card .featured-badge {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, hsl(43, 90%, 55%), hsl(35, 95%, 45%));
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coffee-dark);
}
.promo-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.promo-card-header .icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsla(43, 90%, 50%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.promo-type {
  padding: 0.25rem 0.75rem;
  background: var(--secondary);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
}
.promo-card h2 { font-size: 1.25rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; }
.promo-card > p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.promo-footer { display: flex; align-items: center; justify-content: space-between; }
.promo-bonus-label { font-size: 0.875rem; color: var(--muted-foreground); }
.promo-bonus-value { font-size: 1.5rem; font-weight: 700; }

/* === VIP === */
.vip-hero {
  position: relative;
  padding: 5rem 0 8rem;
  overflow: hidden;
}
@media (min-width: 1024px) { .vip-hero { padding: 8rem 0 10rem; } }
.vip-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .vip-tiers { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vip-tiers { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.vip-tier-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  border: 2px solid hsla(43, 90%, 50%, 0.3);
  background: linear-gradient(to bottom, hsla(30, 25%, 40%, 0.2), var(--coffee-dark));
  transition: all 0.5s;
}
.vip-tier-card:hover { transform: translateY(-12px); }
.vip-tier-card.popular { border-color: hsla(43, 90%, 50%, 0.5); }
@media (min-width: 1024px) { .vip-tier-card.popular { transform: scale(1.05) translateY(-8px); } }
.vip-tier-card .tier-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.vip-tier-card .tier-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.vip-tier-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.vip-tier-card .requirement { margin-bottom: 1.5rem; }
.vip-tier-card .requirement .label { font-size: 0.875rem; color: hsla(0, 0%, 100%, 0.6); }
.vip-tier-card .requirement .value { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.vip-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid hsla(0, 0%, 100%, 0.1); }
.vip-stats .stat-label { font-size: 0.75rem; color: hsla(0, 0%, 100%, 0.6); }
.vip-stats .stat-value { font-size: 1.25rem; font-weight: 700; }
.vip-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
  margin-bottom: 0.75rem;
}
.vip-benefits .check {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: hsla(43, 90%, 50%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
}
.vip-tier-btn {
  width: 100%;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}

/* === Info Sections (Terms, Privacy, About) === */
.info-sections { display: flex; flex-direction: column; gap: 2rem; }
.info-card {
  background: var(--card);
  border: 2px solid hsla(30, 25%, 40%, 0.3);
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  transition: border-color 0.3s;
}
.info-card:hover { border-color: hsla(43, 90%, 50%, 0.3); }
.info-card-inner { display: flex; align-items: flex-start; gap: 1rem; }
.info-card .icon-box {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: var(--coffee);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.info-card h2 { font-size: 1.25rem; font-weight: 700; color: var(--foreground); margin-bottom: 1rem; }
.info-card .content { color: var(--muted-foreground); line-height: 1.7; white-space: pre-line; }

/* Stats bar */
.stats-bar {
  padding: 3rem 0;
  background: var(--background);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-value { font-size: 1.875rem; font-weight: 700; font-family: 'Cinzel', serif; }
@media (min-width: 768px) { .stat-value { font-size: 2.25rem; } }
.stat-label { color: var(--muted-foreground); }

/* Values grid (about page) */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  background: var(--card);
  padding: 1.5rem 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.value-card:hover { border-color: hsla(43, 90%, 50%, 0.3); }
.value-card .icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: hsla(43, 90%, 50%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
}
.value-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: var(--muted-foreground); }

/* === Blog Article Content === */
.article-content { max-width: 56rem; margin: 0 auto; }
.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
.article-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--coffee-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.article-content p {
  color: var(--coffee-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.article-content a { color: var(--gold); font-weight: 600; }
.article-content a:hover { text-decoration: underline; }
.article-content ul, .article-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  color: var(--coffee-dark);
}
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.article-content li::marker { color: var(--gold); }
.article-content strong { color: var(--coffee-dark); font-weight: 700; }
.article-content em { font-style: italic; }
.article-content figure { margin: 2rem 0; }
.article-content figure img { border-radius: 0.5rem; width: 100%; }
.article-content figcaption { text-align: center; font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.5rem; }

/* Article CTA box */
.article-cta {
  margin-top: 4rem;
  padding: 2rem;
  background: linear-gradient(to right, hsla(43, 90%, 50%, 0.2), hsla(43, 90%, 50%, 0.1));
  border-radius: 1rem;
  border: 1px solid hsla(43, 90%, 50%, 0.3);
  text-align: center;
}
.article-cta h3 { font-size: 1.5rem; font-weight: 700; color: var(--foreground); margin-bottom: 1rem; }
.article-cta p { color: var(--muted-foreground); margin-bottom: 1.5rem; }
.article-cta .btn-group { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 640px) { .article-cta .btn-group { flex-direction: row; } }

/* Article back link */
.article-back { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.article-back a { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); font-weight: 500; }
.article-back a:hover { text-decoration: underline; }

/* === Game Detail Page === */
.game-thumbnails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .game-thumbnails { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .game-thumbnails { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .game-thumbnails { grid-template-columns: repeat(6, 1fr); gap: 1.5rem; } }
.game-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--card);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 4px solid var(--coffee-light);
  transition: all 0.3s;
  cursor: pointer;
}
.game-thumb:hover { border-color: var(--gold); transform: translateY(-4px); }
.game-thumb-img { aspect-ratio: 4/3; overflow: hidden; }
.game-thumb-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.game-thumb:hover .game-thumb-img img { transform: scale(1.1); }
.game-thumb-overlay {
  position: absolute;
  inset: 0;
  background: hsla(20, 45%, 15%, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-thumb:hover .game-thumb-overlay { opacity: 1; }
.game-thumb-play {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(43, 90%, 55%), hsl(35, 95%, 45%));
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s;
}
.game-thumb:hover .game-thumb-play { transform: scale(1); }
.game-thumb-title {
  padding: 0.75rem;
  background: var(--coffee-light);
}
.game-thumb-title h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}
.game-thumb:hover .game-thumb-title h3 { color: var(--gold); }

/* Search and filter bar */
.filter-bar {
  padding: 2rem 0;
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
}
.filter-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) { .filter-inner { flex-direction: row; } }
.search-box {
  position: relative;
  width: 100%;
  max-width: 24rem;
}
.search-box input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 2.5rem;
  border: 1px solid hsla(30, 25%, 40%, 0.3);
  border-radius: var(--radius);
  background: var(--card);
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.3s;
}
.search-box input:focus { border-color: var(--gold); }
.search-box .search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  width: 1.25rem;
  height: 1.25rem;
}
.filter-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.filter-btn {
  padding: 0.375rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
  background: linear-gradient(135deg, hsl(43, 90%, 55%), hsl(35, 95%, 45%));
  color: var(--coffee-dark);
  border-color: transparent;
}
.results-count { margin-top: 1rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination .btn { min-width: 2.5rem; }
.pagination .btn.active {
  background: linear-gradient(135deg, hsl(43, 90%, 55%), hsl(35, 95%, 45%));
  color: var(--coffee-dark);
  border-color: transparent;
}

/* Two column layout */
.two-col { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* Feature list */
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.feature-list li svg { color: var(--gold); flex-shrink: 0; width: 1.25rem; height: 1.25rem; }

/* Bonus tag */
.bonus-tag {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
}
.bonus-tag .amount { font-size: 1.875rem; font-weight: 700; font-family: 'Cinzel', serif; }
.bonus-tag .label { font-size: 0.875rem; }

/* Notice box */
.notice-box {
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 3rem;
}
.notice-box.gold { background: hsla(43, 90%, 50%, 0.05); border: 2px solid hsla(43, 90%, 50%, 0.2); }
.notice-box p { color: var(--foreground); line-height: 1.7; }

/* Contact box */
.contact-box {
  padding: 1.5rem;
  background: var(--coffee);
  border-radius: 0.75rem;
  text-align: center;
  color: white;
  margin-top: 3rem;
}
.contact-box h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact-box p { color: hsla(0, 0%, 100%, 0.8); margin-bottom: 1rem; }
.contact-box a { color: var(--gold); font-weight: 600; }
.contact-box a:hover { text-decoration: underline; }

/* Prose (article content) */
.prose { max-width: 56rem; margin: 0 auto; }

/* SVG icons inline */
.icon { display: inline-block; width: 1em; height: 1em; vertical-align: -0.125em; }

/* Utility */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: white; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.hidden { display: none; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Games Index card with button */
.game-index-card {
  background: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 40px hsla(25, 40%, 20%, 0.1);
  transition: all 0.3s;
}
.game-index-card:hover { box-shadow: 0 20px 60px hsla(25, 40%, 20%, 0.2); transform: translateY(-4px); }
.game-index-card .card-img { aspect-ratio: 16/9; overflow: hidden; }
.game-index-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.game-index-card:hover .card-img img { transform: scale(1.1); }
.game-index-card .card-body { padding: 1.5rem; }
.game-index-card h2 { font-size: 1.25rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; transition: color 0.3s; }
.game-index-card:hover h2 { color: var(--gold); }
.game-index-card p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.game-index-card .btn { width: 100%; }

/* How it works steps */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.step-item { text-align: center; position: relative; }
.step-number { font-size: 6rem; font-family: 'Cinzel', serif; font-weight: 700; color: hsla(43, 90%, 50%, 0.4); margin-bottom: 1rem; line-height: 1; }
.step-item h3 { font-size: 1.25rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.75rem; margin-top: -2rem; }
.step-item p { color: var(--muted-foreground); }

/* Blog detail header */
.blog-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: hsla(40, 30%, 95%, 0.7);
  margin-top: 0.5rem;
}

/* Cover image section */
.cover-image-section { background: var(--secondary); padding: 2rem 0; }
.cover-image-section img {
  max-width: 56rem;
  margin: 0 auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border: 2px solid hsla(30, 25%, 40%, 0.3);
}

/* Responsive text */
@media (max-width: 640px) {
  .hero h1 { font-size: 1.75rem; }
  .hero h1 .subtitle { font-size: 1.125rem; }
  .section-header h2 { font-size: 1.5rem; }
  .page-header h1 { font-size: 1.75rem; }
}
