:root{
  /* Background set to user-provided brown tone */
  --bg:#6b3c2a; 
  --bg2:#6b3c2a;
  --bg:#5a3a2a; 
  --bg2:#3f2a20;
  --bg3:#2c1d16;
  --accent:#FFD700; 
  --accent-2:#ffb700;
  --text:#ffffff; 
  --muted:#e6d6c9; 
  --chip:#7a2a22; 
  --chip-top:#8a342b;
  --chip-bottom:#3a0f0c;
}
*{box-sizing:border-box}
html,body{height:100%; background: var(--bg) !important}
body{margin:0; font-family:system-ui, Arial, sans-serif; 
  /* Soft vignette + angled warm gradient + noise */
  background:
    radial-gradient(1000px 500px at 20% -200px, rgba(255,140,60,.15), rgba(255,140,60,0)),
    radial-gradient(800px 400px at 80% -150px, rgba(255,200,120,.08), rgba(255,200,120,0)),
    linear-gradient(120deg, var(--bg) 0%, var(--bg2) 50%, var(--bg3) 100%);
  color:var(--text);
  position:relative;
  overflow-x:hidden;
}

/* Subtle floating shapes for background interest */
body::before, body::after{
  content:""; position:fixed; inset:0; pointer-events:none; z-index:-1;
}
body::before{
  background:
    radial-gradient(140px 60px at 12% 22%, rgba(255,180,80,.10), rgba(255,180,80,0)),
    radial-gradient(220px 120px at 72% 18%, rgba(255,120,60,.10), rgba(255,120,60,0)),
    radial-gradient(180px 90px at 86% 40%, rgba(255,160,100,.08), rgba(255,160,100,0));
  animation: floatBg 18s ease-in-out infinite;
}
body::after{
  background:
    radial-gradient(120px 60px at 30% 70%, rgba(220,120,60,.08), rgba(220,120,60,0)),
    radial-gradient(140px 70px at 60% 82%, rgba(255,210,130,.07), rgba(255,210,130,0));
  animation: floatBg 22s ease-in-out infinite reverse;
}

@keyframes floatBg{
  0% { transform: translate3d(0,0,0); filter: brightness(1); }
  50% { transform: translate3d(0,-10px,0); filter: brightness(1.05); }
  100% { transform: translate3d(0,0,0); filter: brightness(1); }
}

/* Content Pages Styling */
.content-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Theme alignment for long-form content pages (About, Promotions) */
.content-page h2,
.content-page h3 {
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.25));
}

.content-page h2 {
  font-weight: 900;
  letter-spacing: 0.2px;
  margin-bottom: 16px;
}

.content-page h3 {
  font-weight: 800;
}

.content-page p,
.content-page li {
  color: var(--muted);
}

.content-page .lead-text {
  color: var(--muted);
}

.content-page a:not(.btn) {
  color: var(--accent);
}

.content-page a:not(.btn):hover,
.content-page a:not(.btn):focus {
  color: var(--accent-2);
}

.page-title {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.4));
  position: relative;
}

.page-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0.15;
  filter: blur(14px);
  pointer-events: none;
  z-index: -1;
}

/* Breadcrumbs: small section above hero (uses site theme colors) */
.breadcrumbs-section {
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

/* Table of Contents (styled like breadcrumbs section) */
.toc-section {
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  margin: 0 0 2rem;
}

/* Stick TOC to hero (remove the visual gap caused by hero margin-bottom) */
.about-hero + .toc-section,
.promotions-hero + .toc-section,
.articles-hero + .toc-section,
.app-download-hero + .toc-section {
  margin-top: -40px;
}

.toc-section .container {
  padding-top: 10px;
  padding-bottom: 10px;
}

.toc-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.toc-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.toc-title {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 800;
  color: var(--text);
  background: none;
  -webkit-text-fill-color: initial;
  filter: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.toc-subtitle {
  display: none;
}

.toc-nav {
  display: inline-flex;
  align-items: center;
}

.toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.toc-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.toc-list li::before {
  content: "›";
  color: rgba(230, 214, 201, 0.75);
}

.toc-list li:first-child::before {
  content: "";
}

.toc-list a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  opacity: 0.95;
  padding: 4px 8px;
  border-radius: 999px;
  transition: background 160ms ease, opacity 160ms ease;
}

.toc-list a:hover,
.toc-list a:focus {
  color: var(--accent);
  opacity: 1;
  text-decoration: underline;
  background: rgba(255, 255, 255, 0.06);
}

.toc-list a:focus {
  outline: none;
}

.toc-list a:focus-visible {
  outline: 2px solid rgba(255, 215, 0, 0.65);
  outline-offset: 2px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  .toc-list a {
    transition: none;
  }
}

.toc-target {
  scroll-margin-top: 90px;
}

@media (max-width: 576px) {
  .toc-section .container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .toc-title,
  .toc-list li {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .about-hero + .toc-section,
  .promotions-hero + .toc-section,
  .articles-hero + .toc-section,
  .app-download-hero + .toc-section {
    margin-top: -24px;
  }
}

@media (prefers-color-scheme: light) {
  .toc-section {
    background: rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
}

.breadcrumbs-section .container {
  padding-top: 10px;
  padding-bottom: 10px;
}

.breadcrumbs-section .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--muted);
}

.breadcrumbs-section .breadcrumbs a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  opacity: 0.95;
}

.breadcrumbs-section .breadcrumbs a:hover,
.breadcrumbs-section .breadcrumbs a:focus {
  color: var(--accent);
  opacity: 1;
  text-decoration: underline;
}

.breadcrumbs-section .breadcrumbs .separator {
  color: rgba(230, 214, 201, 0.75);
}

.breadcrumbs-section .breadcrumbs .current,
.breadcrumbs-section .breadcrumbs span:last-child {
  font-weight: 600;
  color: var(--text);
  opacity: 1;
}

@media (max-width: 576px) {
  .breadcrumbs-section .container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .breadcrumbs-section .breadcrumbs {
    font-size: 0.9rem;
    gap: 6px;
  }
}

@media (prefers-color-scheme: light) {
  .breadcrumbs-section {
    background: rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
}

.content-section ul, .content-section ol {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--muted);
}

.feature-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4), rgba(58, 15, 12, 0.4));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.feature-card h3 {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.feature-card p {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
}

/* About Page Specific Styles */
.about-hero {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 50%, var(--bg) 100%);
  padding: 80px 0 60px;
  margin-bottom: 40px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 50px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-stat-item {
  text-align: center;
  padding: 20px 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  border-color: var(--accent);
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.hero-stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.lead-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .about-hero { padding: 50px 0 40px; margin-bottom: 24px; }
  .about-hero-title { font-size: 2.2rem; }
  .about-hero-subtitle { font-size: 1rem; margin-bottom: 24px; }
  .about-hero-stats { gap: 16px; }
  .hero-stat-item { padding: 14px 16px; }
  .hero-stat-number { font-size: 1.6rem; }
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.mission-card, .vision-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.5) 0%, rgba(58, 15, 12, 0.4) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 35px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before, .vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mission-card:hover::before, .vision-card:hover::before {
  opacity: 1;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25);
  border-color: var(--accent);
}

.mission-icon, .vision-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  text-align: center;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.mission-card h3, .vision-card h3 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-align: center;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.mission-card p, .vision-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.feature-card-enhanced {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4), rgba(58, 15, 12, 0.4));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card-enhanced:hover::before {
  opacity: 1;
}

.feature-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25);
  border-color: var(--accent);
}

.feature-icon-large {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  text-align: center;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.feature-card-enhanced h3 {
  font-size: 1.4rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  text-align: center;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.feature-card-enhanced p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
  text-align: left;
}

.why-choose-intro {
  margin-bottom: 30px;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 140, 0, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.games-showcase {
  display: grid;
  gap: 25px;
  margin-top: 30px;
}

.game-category-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.5) 0%, rgba(58, 15, 12, 0.4) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.game-category-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
  border-color: var(--accent);
}

.game-category-card h3 {
  font-size: 1.6rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.game-category-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.tech-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.tech-item {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.3) 0%, rgba(58, 15, 12, 0.3) 100%);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.tech-item:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
  transform: translateY(-5px);
}

.tech-item h4 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
}

.tech-item p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9rem;
  margin: 0;
}

.responsible-gaming-content {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 140, 0, 0.03) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 35px;
  margin-top: 25px;
}

.responsible-gaming-content h3 {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 20px;
  margin-top: 30px;
}

.responsible-gaming-content h3:first-child {
  margin-top: 0;
}

.enhanced-list {
  list-style: none;
  padding-left: 0;
}

.enhanced-list li {
  padding: 12px 0 12px 35px;
  position: relative;
  color: var(--muted);
  line-height: 1.7;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.enhanced-list li:last-child {
  border-bottom: none;
}

.enhanced-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
  font-size: 1.2rem;
}

.community-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.community-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4) 0%, rgba(58, 15, 12, 0.3) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.community-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
  transform: translateY(-5px);
}

.community-card h4 {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.community-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.trust-indicators {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.3) 0%, rgba(58, 15, 12, 0.25) 100%);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.trust-item:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.15);
  transform: translateX(10px);
}

.trust-badge {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--bg3);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.trust-content h4 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 700;
}

.trust-content p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.getting-started-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4) 0%, rgba(58, 15, 12, 0.35) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
  border-color: var(--accent);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--bg3);
  margin-bottom: 20px;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.step-card h4 {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.step-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.contact-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4) 0%, rgba(58, 15, 12, 0.3) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
  transform: scale(1.05);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.contact-card h4 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

.final-cta-box {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.6) 0%, rgba(58, 15, 12, 0.5) 100%);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
  margin-top: 40px;
}

.final-cta-box h2 {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 6px rgba(255, 215, 0, 0.4));
}

.cta-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.cta-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 10px 20px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.cta-highlight-item:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 140, 0, 0.2) 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.highlight-icon {
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 900;
}

.cta-disclaimer {
  margin-top: 25px;
  color: rgba(230, 214, 201, 0.7);
  font-size: 0.85rem;
  font-style: italic;
}

/* About Page Responsive */
@media (max-width: 768px) {
  .about-hero {
    padding: 50px 0 40px;
  }

  .about-hero-title {
    font-size: 2.2rem;
  }

  .about-hero-subtitle {
    font-size: 1.1rem;
  }

  .about-hero-stats {
    gap: 20px;
  }

  .hero-stat-item {
    padding: 15px 20px;
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  .lead-text {
    font-size: 1.05rem;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-box {
    padding: 35px 25px;
  }

  .final-cta-box h2 {
    font-size: 1.6rem;
  }

  .cta-highlights {
    gap: 12px;
  }

  .cta-highlight-item {
    font-size: 0.85rem;
    padding: 8px 15px;
  }
}

/* Promotions Page Styles */
.promotions-hero {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 50%, var(--bg) 100%);
  padding: 80px 0 60px;
  margin-bottom: 40px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.promotions-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.1) 0%, transparent 40%);
  pointer-events: none;
  animation: promoGlow 8s ease-in-out infinite alternate;
}

@keyframes promoGlow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.promotions-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.promo-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg3);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.promotions-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
  line-height: 1.2;
}

.promotions-hero-subtitle {
  font-size: 1.3rem;
  color: var(--muted);
  margin-bottom: 40px;
  font-weight: 500;
}

.promotions-hero-highlight {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-highlight-item {
  text-align: center;
}

.highlight-amount {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.highlight-label {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.hero-highlight-divider {
  width: 2px;
  height: 50px;
  background: linear-gradient(180deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

.promo-card-premium {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.6) 0%, rgba(58, 15, 12, 0.5) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}

.promo-card-premium::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.promo-card-premium:hover::before {
  opacity: 1;
}

.promo-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
  border-color: var(--accent);
}

.promo-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg3);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 8px 40px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
  letter-spacing: 1px;
}

.promo-ribbon.hot {
  background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
  animation: pulse 1.5s ease-in-out infinite;
}

.promo-header {
  text-align: center;
  margin-bottom: 20px;
}

.promo-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.4));
  animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.promo-header h3 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.promo-amount-large {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin: 20px 0;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
  line-height: 1;
}

.promo-tagline {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 25px;
  font-weight: 500;
}

.promo-details {
  margin-top: 25px;
}

.promo-details h4 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 15px;
  margin-top: 20px;
  font-weight: 700;
}

.promo-benefits {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.promo-benefits li {
  padding: 10px 0;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.benefit-icon {
  color: var(--accent);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.promo-steps-mini {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 15px 0;
}

.promo-steps-mini li {
  counter-increment: step-counter;
  padding: 10px 0 10px 35px;
  color: var(--muted);
  position: relative;
  line-height: 1.6;
}

.promo-steps-mini li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 8px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.promo-terms-preview {
  background: rgba(255, 215, 0, 0.05);
  border-left: 3px solid var(--accent);
  padding: 12px 15px;
  margin-top: 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.promo-cta-btn {
  position: relative;
  overflow: hidden;
}

.promo-cta-btn small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.9;
  margin-top: 4px;
}

.daily-rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.reward-day {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 15px 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.reward-day.highlighted {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 140, 0, 0.15) 100%);
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transform: scale(1.05);
}

.reward-day:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.day-number {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 600;
}

.day-reward {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
}

.promo-card-standard {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4) 0%, rgba(58, 15, 12, 0.35) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.promo-card-standard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.promo-card-standard:hover::before {
  opacity: 1;
}

.promo-card-standard:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25);
  border-color: var(--accent);
}

.promo-category-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 140, 0, 0.15) 100%);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.promo-standard-header {
  text-align: center;
  margin-bottom: 15px;
}

.promo-standard-header h3 {
  font-size: 1.4rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.promo-amount-standard {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 15px;
}

.promo-description {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 15px;
  flex-grow: 1;
}

.promo-features-compact {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  font-size: 0.9rem;
}

.promo-features-compact li {
  padding: 8px 0 8px 20px;
  color: var(--muted);
  position: relative;
  line-height: 1.5;
}

.promo-features-compact li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
  font-size: 1.2rem;
}

.vip-tier-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.5) 0%, rgba(58, 15, 12, 0.4) 100%);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.vip-tier-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vip-tier-card:hover::before {
  opacity: 1;
}

.vip-tier-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 45px rgba(255, 215, 0, 0.35);
}

.bronze-tier:hover {
  border-color: #CD7F32;
}

.silver-tier:hover {
  border-color: #C0C0C0;
}

.gold-tier:hover {
  border-color: #FFD700;
}

.diamond-tier:hover {
  border-color: #B9F2FF;
}

.vip-tier-icon {
  font-size: 4rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.4));
}

.vip-tier-card h3 {
  font-size: 1.6rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.vip-requirement {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
  padding: 8px 12px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  font-weight: 600;
}

.vip-benefits-list {
  text-align: left;
  margin: 20px 0;
}

.vip-benefits-list h4 {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 12px;
  text-align: center;
  font-weight: 700;
}

.vip-benefits-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vip-benefits-list li {
  padding: 8px 0 8px 25px;
  color: var(--muted);
  position: relative;
  font-size: 0.9rem;
  line-height: 1.6;
}

.vip-benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.vip-cashback-highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg3);
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.vip-cashback-highlight strong {
  font-size: 1.3rem;
}

.vip-program-intro {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 140, 0, 0.03) 100%);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  padding: 25px;
  margin-top: 20px;
}

.vip-progression-info {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.3) 0%, rgba(58, 15, 12, 0.25) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 30px;
}

.vip-progression-info h3 {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 15px;
  text-align: center;
}

.vip-progression-info p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 25px;
}

.vip-perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.vip-perk {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.vip-perk:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.perk-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.perk-text {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.festival-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.festival-promo-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.5) 0%, rgba(58, 15, 12, 0.4) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.festival-promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
  border-color: var(--accent);
}

.festival-icon {
  font-size: 4rem;
  margin-bottom: 15px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.3));
}

.festival-promo-card h3 {
  font-size: 1.4rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.festival-promo-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 15px;
}

.festival-dates {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
}

.claim-process-steps {
  margin-top: 30px;
}

.process-step {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.process-step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.process-step-content h4 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 700;
}

.process-step-content p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.process-note,
.process-tip {
  background: rgba(255, 215, 0, 0.1);
  border-left: 3px solid var(--accent);
  padding: 10px 15px;
  margin-top: 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text);
}

.wagering-explainer {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 140, 0, 0.03) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 30px;
  margin-top: 25px;
}

.wagering-example {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
}

.wagering-example h4 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 700;
}

.example-scenario {
  background: rgba(122, 42, 34, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin: 15px 0;
}

.scenario-detail {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.scenario-detail.total {
  border-bottom: none;
  padding-top: 15px;
  margin-top: 10px;
  border-top: 2px solid var(--accent);
  font-weight: 700;
}

.scenario-detail .label {
  color: var(--muted);
}

.scenario-detail .value {
  color: var(--accent);
  font-weight: 700;
}

.wagering-tips {
  margin: 25px 0;
}

.wagering-tips h4 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 15px;
  font-weight: 700;
}

.wagering-tips ul {
  list-style: none;
  padding: 0;
}

.wagering-tips li {
  padding: 10px 0 10px 25px;
  color: var(--muted);
  position: relative;
  line-height: 1.7;
}

.wagering-tips li::before {
  content: "💡";
  position: absolute;
  left: 0;
  font-size: 1rem;
}

.game-contributions {
  margin-top: 25px;
}

.game-contributions h4 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 700;
}

.contribution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}

.contribution-item {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4) 0%, rgba(58, 15, 12, 0.3) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.contribution-item:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
}

.game-type {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.contribution-rate {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
}

.terms-comprehensive {
  margin-top: 25px;
}

.terms-category {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.3) 0%, rgba(58, 15, 12, 0.25) 100%);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
}

.terms-category h2 {
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.terms-category p {
  color: var(--muted);
  line-height: 1.8;
}

.terms-category strong {
  color: var(--text);
}

.terms-category a:not(.btn):not(.faq-nav-link) {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.terms-category a:not(.btn):not(.faq-nav-link):hover,
.terms-category a:not(.btn):not(.faq-nav-link):focus {
  color: var(--accent-2);
  text-decoration: underline;
}

.terms-category h4 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 15px;
  font-weight: 700;
}

.terms-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-category li {
  padding: 10px 0 10px 25px;
  color: var(--muted);
  position: relative;
  line-height: 1.7;
  border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

.terms-category li:last-child {
  border-bottom: none;
}

.terms-category li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.terms-footer-note {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-top: 25px;
  text-align: center;
}

.terms-footer-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.promotions-faq {
  margin-top: 30px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.3) 0%, rgba(58, 15, 12, 0.25) 100%);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.15);
}

.faq-item h4 {
  font-size: 1.2rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  font-weight: 700;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.faq-item p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.final-promotions-cta {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.6) 0%, rgba(58, 15, 12, 0.5) 100%);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 15px 45px rgba(255, 215, 0, 0.3);
}

.final-promotions-cta h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 6px rgba(255, 215, 0, 0.4));
}

.final-cta-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 35px 0;
}

.cta-stat {
  text-align: center;
}

.cta-stat .stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.cta-stat .stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.final-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

.final-cta-buttons .btn {
  min-width: 250px;
}

.final-cta-buttons .btn small {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  opacity: 0.9;
}

.final-cta-disclaimer {
  margin-top: 25px;
  color: rgba(230, 214, 201, 0.7);
  font-size: 0.85rem;
  font-style: italic;
}

/* Promotions Page Responsive */
@media (max-width: 768px) {
  .promotions-hero {
    padding: 50px 0 40px;
  }

  .promotions-hero-title {
    font-size: 2rem;
  }

  .promotions-hero-subtitle {
    font-size: 1rem;
  }

  .promotions-hero-highlight {
    gap: 15px;
  }

  .highlight-amount {
    font-size: 1.8rem;
  }

  .hero-highlight-divider {
    display: none;
  }

  .promo-card-premium {
    padding: 25px;
  }

  .promo-amount-large {
    font-size: 2.5rem;
  }

  .daily-rewards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step {
    flex-direction: column;
    gap: 15px;
  }

  .final-promotions-cta {
    padding: 35px 25px;
  }

  .final-promotions-cta h2 {
    font-size: 1.8rem;
  }

  .final-cta-stats {
    gap: 20px;
  }

  .final-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .final-cta-buttons .btn {
    min-width: auto;
    width: 100%;
  }
}

/* App Download Page Styles */
.app-download-hero {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 50%, var(--bg) 100%);
  padding: 80px 0 60px;
  margin-bottom: 40px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.app-download-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0, 150, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: appHeroGlow 10s ease-in-out infinite alternate;
}

@keyframes appHeroGlow {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.app-download-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.app-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg3);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.app-download-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
  line-height: 1.2;
}

.app-download-hero-subtitle {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 50px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.app-intro-section {
  margin-bottom: 40px;
}

.app-download-hero-highlight {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.app-download-hero-highlight .hero-highlight-item {
  text-align: center;
  padding: 20px 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.app-download-hero-highlight .hero-highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  border-color: var(--accent);
}

.app-download-hero-highlight .highlight-amount {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.app-download-hero-highlight .highlight-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.app-download-hero-highlight .hero-highlight-divider {
  display: none;
}

.app-download-platforms {
  margin-top: 50px;
}

.app-platform-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.6) 0%, rgba(58, 15, 12, 0.5) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}

.app-platform-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.app-platform-card:hover::before {
  opacity: 1;
}

.app-platform-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
  border-color: var(--accent);
}

.android-card {
  border-color: rgba(60, 180, 75, 0.3);
}

.android-card:hover {
  border-color: #3CB44B;
  box-shadow: 0 20px 40px rgba(60, 180, 75, 0.3);
}

.ios-card {
  border-color: rgba(0, 150, 255, 0.3);
}

.ios-card:hover {
  border-color: #0096FF;
  box-shadow: 0 20px 40px rgba(0, 150, 255, 0.3);
}

.platform-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #3CB44B 0%, #2E8B3D 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 8px 40px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(60, 180, 75, 0.4);
  letter-spacing: 1px;
}

.platform-ribbon.premium {
  background: linear-gradient(135deg, #0096FF 0%, #0066CC 100%);
  box-shadow: 0 4px 10px rgba(0, 150, 255, 0.4);
}

.platform-icon-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.platform-icon {
  font-size: 5rem;
  display: inline-block;
  filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.4));
  animation: platformIconFloat 4s ease-in-out infinite;
}

@keyframes platformIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.android-icon {
  filter: drop-shadow(0 4px 15px rgba(60, 180, 75, 0.5));
}

.ios-icon {
  filter: drop-shadow(0 4px 15px rgba(0, 150, 255, 0.5));
}

.platform-title {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.platform-rating {
  text-align: center;
  margin-bottom: 20px;
}

.platform-rating .stars {
  font-size: 1.2rem;
  margin-bottom: 5px;
  display: block;
}

.platform-rating .rating-text {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.platform-highlight-amount {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin: 20px 0;
  filter: drop-shadow(0 3px 6px rgba(255, 215, 0, 0.4));
}

.platform-tagline {
  text-align: center;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 25px;
  font-weight: 500;
}

.platform-details {
  margin-top: 30px;
}

.platform-details h4 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 15px;
  margin-top: 25px;
  font-weight: 700;
}

.platform-benefits {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.platform-benefits li {
  padding: 10px 0;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
  border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

.platform-benefits li:last-child {
  border-bottom: none;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 15px 0 25px;
}

.req-item {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}

.req-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.req-value {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 800;
}

.platform-bonus {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  margin-top: 30px;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25);
}

.bonus-badge {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.bonus-amount {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.bonus-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.platform-cta-btn {
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
  padding: 18px 30px;
}

.platform-cta-btn small {
  display: block;
  font-size: 0.75rem;
  margin-top: 5px;
  opacity: 0.9;
}

.installation-guide-section {
  margin-top: 60px;
}

.installation-guide-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4) 0%, rgba(58, 15, 12, 0.35) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 35px;
  height: 100%;
}

.guide-header {
  text-align: center;
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.guide-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.3));
}

.guide-header h3 {
  font-size: 1.6rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.installation-steps {
  margin: 30px 0;
}

.install-step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.step-content {
  flex: 1;
}

.step-content h4 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 700;
}

.step-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.step-note,
.step-tip,
.step-bonus {
  background: rgba(255, 215, 0, 0.1);
  border-left: 3px solid var(--accent);
  padding: 10px 15px;
  margin-top: 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text);
}

.step-tip {
  background: rgba(0, 150, 255, 0.1);
  border-left-color: #0096FF;
}

.step-bonus {
  background: rgba(60, 180, 75, 0.1);
  border-left-color: #3CB44B;
  font-weight: 600;
}

.troubleshooting-section {
  background: rgba(255, 140, 0, 0.08);
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-radius: 12px;
  padding: 25px;
  margin-top: 30px;
}

.troubleshooting-section h4 {
  font-size: 1.1rem;
  color: #FF8C00;
  margin-bottom: 15px;
  font-weight: 700;
}

.troubleshooting-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.troubleshooting-list li {
  padding: 10px 0 10px 25px;
  color: var(--muted);
  position: relative;
  line-height: 1.7;
  border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

.troubleshooting-list li:last-child {
  border-bottom: none;
}

.troubleshooting-list li::before {
  content: "⚠";
  position: absolute;
  left: 0;
  color: #FF8C00;
  font-size: 1.1rem;
}

.app-features-comprehensive {
  margin-top: 60px;
}

.app-feature-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4) 0%, rgba(58, 15, 12, 0.35) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.app-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25);
  border-color: var(--accent);
}

.feature-icon-large {
  font-size: 3.5rem;
  margin-bottom: 15px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.3));
}

.app-feature-card h3 {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.app-feature-card p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  font-size: 0.95rem;
}

.why-mobile-app {
  margin-top: 60px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin: 30px 0;
}

.app-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.3) 0%, rgba(58, 15, 12, 0.25) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
}

.app-comparison-table thead {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.6) 0%, rgba(58, 15, 12, 0.5) 100%);
}

.app-comparison-table th {
  padding: 18px 15px;
  text-align: left;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.app-comparison-table th.highlight-col {
  background: rgba(255, 215, 0, 0.15);
  color: var(--accent);
  font-size: 1.05rem;
}

.app-comparison-table td {
  padding: 15px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  line-height: 1.6;
}

.app-comparison-table td.highlight-col {
  background: rgba(255, 215, 0, 0.08);
  color: var(--text);
  font-weight: 600;
}

.app-comparison-table tbody tr:hover {
  background: rgba(255, 215, 0, 0.05);
}

.app-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-summary {
  margin-top: 30px;
}

.device-compatibility {
  margin-top: 60px;
}

.compatibility-intro {
  margin-bottom: 35px;
}

.compatibility-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4) 0%, rgba(58, 15, 12, 0.35) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 35px;
  height: 100%;
}

.compatibility-card h3 {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.device-list {
  margin: 20px 0;
}

.device-brand {
  margin-bottom: 25px;
}

.device-brand h4 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
}

.device-brand ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.device-brand li {
  padding: 8px 0 8px 20px;
  color: var(--muted);
  position: relative;
  line-height: 1.6;
  font-size: 0.95rem;
}

.device-brand li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3CB44B;
  font-weight: 900;
}

.compatibility-note {
  background: rgba(60, 180, 75, 0.15);
  border: 1px solid rgba(60, 180, 75, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-top: 25px;
  color: var(--text);
  font-weight: 600;
  text-align: center;
}

.app-benefits-timeline {
  margin-top: 60px;
}

.timeline {
  position: relative;
  padding: 30px 0;
  margin: 40px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(255, 215, 0, 0.3) 100%);
}

.timeline-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 40px;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  z-index: 2;
}

.timeline-content {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4) 0%, rgba(58, 15, 12, 0.35) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 25px;
}

.timeline-content h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
}

.timeline-content p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.security-safety {
  margin-top: 60px;
}

.security-feature {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4) 0%, rgba(58, 15, 12, 0.35) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.security-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25);
  border-color: var(--accent);
}

.security-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
  text-align: center;
  filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.3));
}

.security-feature h3 {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  text-align: center;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.security-feature p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
}

.app-faqs {
  margin-top: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.final-app-cta {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.6) 0%, rgba(58, 15, 12, 0.5) 100%);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 15px 45px rgba(255, 215, 0, 0.3);
}

.final-app-cta h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  filter: drop-shadow(0 3px 6px rgba(255, 215, 0, 0.4));
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 35px;
}

/* App Download Page Responsive */
@media (max-width: 768px) {
  .app-download-hero {
    padding: 50px 0 40px;
  }

  .app-download-hero-title {
    font-size: 2rem;
  }

  .app-download-hero-subtitle {
    font-size: 1rem;
  }

  .app-platform-card {
    padding: 25px;
  }

  .platform-icon {
    font-size: 3.5rem;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .install-step {
    flex-direction: column;
    gap: 15px;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-item {
    padding-left: 55px;
  }

  .timeline-marker {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .app-comparison-table {
    font-size: 0.85rem;
  }

  .app-comparison-table th,
  .app-comparison-table td {
    padding: 10px 8px;
  }

  .final-app-cta {
    padding: 35px 25px;
  }

  .final-app-cta h2 {
    font-size: 1.8rem;
  }

  .final-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .final-cta-buttons .btn {
    width: 100%;
  }
}

/* Articles Page Styles */
.articles-hero {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 50%, var(--bg) 100%);
  padding: 80px 0 60px;
  margin-bottom: 40px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.articles-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.articles-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.articles-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg3);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.articles-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
  line-height: 1.2;
}

.articles-hero-subtitle {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 50px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.articles-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.articles-hero-stats .hero-stat-item {
  text-align: center;
  padding: 20px 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.articles-hero-stats .hero-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  border-color: var(--accent);
}

.article-card-featured {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.6) 0%, rgba(58, 15, 12, 0.5) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.article-card-featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
  border-color: var(--accent);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg3);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 8px 40px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
  letter-spacing: 1px;
  z-index: 2;
}

.article-featured-image {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.image-placeholder {
  font-size: 6rem;
  filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.3));
}

.article-featured-content {
  padding: 35px;
}

.article-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.article-category {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.article-category.guides {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(56, 142, 60, 0.15) 100%);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #81C784;
}

.article-category.strategies {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.2) 0%, rgba(230, 81, 0, 0.15) 100%);
  border: 1px solid rgba(255, 152, 0, 0.4);
  color: #FFB74D;
}

.article-category.game-guides {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.2) 0%, rgba(25, 118, 210, 0.15) 100%);
  border: 1px solid rgba(33, 150, 243, 0.4);
  color: #64B5F6;
}

.article-category.live-casino {
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.2) 0%, rgba(123, 31, 162, 0.15) 100%);
  border: 1px solid rgba(156, 39, 176, 0.4);
  color: #BA68C8;
}

.article-category.sports {
  background: linear-gradient(135deg, rgba(244, 67, 54, 0.2) 0%, rgba(211, 47, 47, 0.15) 100%);
  border: 1px solid rgba(244, 67, 54, 0.4);
  color: #E57373;
}

.article-category.banking {
  background: linear-gradient(135deg, rgba(0, 150, 136, 0.2) 0%, rgba(0, 121, 107, 0.15) 100%);
  border: 1px solid rgba(0, 150, 136, 0.4);
  color: #4DB6AC;
}

.article-category.promotions {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 160, 0, 0.15) 100%);
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: #FFD54F;
}

.article-category.app {
  background: linear-gradient(135deg, rgba(63, 81, 181, 0.2) 0%, rgba(48, 63, 159, 0.15) 100%);
  border: 1px solid rgba(63, 81, 181, 0.4);
  color: #7986CB;
}

.article-date {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.article-featured-title {
  font-size: 2rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
  line-height: 1.3;
}

.article-excerpt {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.article-meta-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.read-time,
.article-views {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.article-read-more {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.article-read-more:hover {
  color: var(--accent-2);
  transform: translateX(5px);
}

.articles-grid {
  margin-top: 40px;
}

.article-card-standard {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4) 0%, rgba(58, 15, 12, 0.35) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.article-card-standard:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25);
  border-color: var(--accent);
}

.article-standard-image {
  flex-shrink: 0;
  width: 180px;
  height: 140px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.article-standard-image .image-placeholder {
  font-size: 3.5rem;
}

.article-standard-content {
  flex: 1;
}

.article-standard-content h3 {
  font-size: 1.4rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
  line-height: 1.4;
}

.article-standard-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Articles Pagination */
.articles-grid .pagination {
  gap: 6px;
  margin-bottom: 0;
}

.articles-grid .page-item {
  margin: 0;
}

.articles-grid .page-link {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4) 0%, rgba(58, 15, 12, 0.35) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.articles-grid .page-link:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg3);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.articles-grid .page-item.active .page-link {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg3);
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.articles-grid .page-item.disabled .page-link {
  background: rgba(122, 42, 34, 0.2);
  border-color: rgba(255, 215, 0, 0.1);
  color: var(--muted);
  opacity: 0.5;
  cursor: not-allowed;
}

.sidebar-widget {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4) 0%, rgba(58, 15, 12, 0.35) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
}

.sidebar-widget h3 {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.search-widget .search-box {
  display: flex;
  gap: 10px;
}

.search-widget .form-control {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--text);
  padding: 10px 15px;
}

.search-widget .form-control:focus {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.15);
  color: var(--text);
}

.search-widget .btn {
  flex-shrink: 0;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-list a:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: var(--accent);
  transform: translateX(5px);
}

.cat-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cat-name {
  flex: 1;
  font-weight: 600;
}

.cat-count {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg3);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 700;
}

.popular-articles-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.popular-articles-list li {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.popular-articles-list li:last-child {
  border-bottom: none;
}

.popular-rank {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.popular-content {
  flex: 1;
}

.popular-content a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.popular-content a:hover {
  color: var(--accent);
}

.popular-views {
  font-size: 0.8rem;
  color: var(--muted);
}

.newsletter-widget p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.newsletter-form .form-control {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--text);
  padding: 10px 15px;
}

.newsletter-form .form-control:focus {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.15);
  color: var(--text);
}

.newsletter-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 10px;
  margin-bottom: 0;
}

.cta-widget {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  border-color: var(--accent);
  text-align: center;
}

.cta-widget-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.3));
}

.cta-widget p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.cta-widget-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.cta-widget-features span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.app-widget {
  text-align: center;
}

.app-widget-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.3));
}

.app-widget p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.why-read-section {
  margin-top: 60px;
}

.why-read-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4) 0%, rgba(58, 15, 12, 0.35) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.why-read-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25);
  border-color: var(--accent);
}

.why-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.3));
}

.why-read-card h3 {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.why-read-card p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.topics-covered-section {
  margin-top: 60px;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.topic-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4) 0%, rgba(58, 15, 12, 0.35) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.topic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25);
  border-color: var(--accent);
}

.topic-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.topic-card h3 {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
  position: relative;
  z-index: 1;
}

.topic-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Articles Page Responsive */
@media (max-width: 992px) {
  .article-card-standard {
    flex-direction: column;
  }

  .article-standard-image {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .articles-hero {
    padding: 50px 0 40px;
  }

  .articles-hero-title {
    font-size: 2rem;
  }

  .articles-hero-subtitle {
    font-size: 1rem;
  }

  .article-featured-image {
    height: 250px;
  }

  .image-placeholder {
    font-size: 4rem;
  }

  .article-featured-content {
    padding: 25px;
  }

  .article-featured-title {
    font-size: 1.5rem;
  }

  .article-card-standard {
    padding: 20px;
  }

  .article-standard-content h3 {
    font-size: 1.2rem;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }
}

/* App Download Page */
.app-download-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.5), rgba(58, 15, 12, 0.5));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.app-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.app-download-card h2 {
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.app-download-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.app-download-card .feature-list {
  text-align: left;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.app-download-card .feature-list li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.app-requirements {
  background: rgba(0,0,0,0.3);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.installation-steps {
  background: rgba(122, 42, 34, 0.3);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.installation-steps li {
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.feature-list-detailed {
  list-style: none;
  padding: 0;
}

.feature-list-detailed li {
  background: rgba(122, 42, 34, 0.3);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--accent);
  color: var(--muted);
}

.feature-list-detailed strong {
  color: var(--accent);
}

/* Promotions Page */
.promo-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.5), rgba(58, 15, 12, 0.5));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
}

.promo-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--bg3);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.promo-card h2, .promo-card h3 {
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.promo-amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent);
  margin: 1rem 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.promo-amount.small {
  font-size: 1.8rem;
}

.promo-description {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.promo-features {
  text-align: left;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.promo-features li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.vip-tier {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4), rgba(58, 15, 12, 0.4));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.vip-tier h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.vip-tier.bronze h3 { color: #cd7f32; }
.vip-tier.silver h3 { color: #c0c0c0; }
.vip-tier.gold h3 { color: #ffd700; }
.vip-tier.diamond h3 { color: #b9f2ff; }

.vip-tier ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vip-tier li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.claim-steps {
  background: rgba(122, 42, 34, 0.3);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.claim-steps li {
  margin-bottom: 1rem;
  color: var(--muted);
}

.terms-box {
  background: rgba(0,0,0,0.3);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.terms-box ul {
  margin: 0;
  padding-left: 1.5rem;
}

.terms-box li {
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Articles Page */
.article-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.5), rgba(58, 15, 12, 0.5));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
}

.article-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--bg3);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-weight: bold;
  font-size: 0.75rem;
  z-index: 1;
}

.article-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: rgba(0,0,0,0.3);
}

.article-image-small {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
  background: rgba(0,0,0,0.3);
}

.article-content {
  padding: 0.5rem;
}

.article-category {
  display: inline-block;
  background: rgba(255, 215, 0, 0.2);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.article-content h2, .article-content h3 {
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.article-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.article-content p {
  color: var(--muted);
  line-height: 1.6;
}

.sidebar-widget {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4), rgba(58, 15, 12, 0.4));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-widget h3 {
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.category-list, .popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li, .popular-list li {
  margin-bottom: 0.8rem;
}

.category-list a, .popular-list a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.category-list a:hover, .popular-list a:hover {
  color: var(--accent);
}

.cta-widget {
  text-align: center;
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.6), rgba(58, 15, 12, 0.6));
}

.cta-widget p {
  color: var(--muted);
  margin-bottom: 1rem;
}

/* FAQs Page */
.faq-hero {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 50%, var(--bg) 100%);
  padding: 80px 0 60px;
  margin-bottom: 40px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.faq-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.faq-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg3);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.faq-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
  line-height: 1.2;
}

.faq-hero-subtitle {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 40px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-hero-search {
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  gap: 10px;
}

.faq-hero-search .form-control {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--text);
  padding: 15px 20px;
  font-size: 1.1rem;
  border-radius: 12px;
}

.faq-hero-search .form-control:focus {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.15);
  color: var(--text);
}

.faq-hero-search .btn {
  flex-shrink: 0;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 12px;
}

.faq-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.faq-hero-stats .hero-stat-item {
  text-align: center;
  padding: 20px 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.faq-hero-stats .hero-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  border-color: var(--accent);
}

.faq-sidebar {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4) 0%, rgba(58, 15, 12, 0.35) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 25px;
  position: sticky;
  top: 20px;
}

.faq-sidebar h3 {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.faq-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.faq-nav-list li {
  margin-bottom: 8px;
}

.faq-nav-link {
  display: block;
  padding: 10px 15px;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.faq-nav-link:hover,
.faq-nav-link.active {
  background: rgba(255, 215, 0, 0.15);
  border-color: var(--accent);
  transform: translateX(5px);
  color: var(--accent);
}

.faq-contact-widget {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.faq-contact-widget h4 {
  font-size: 1.1rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.faq-contact-widget p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.faq-section {
  margin-bottom: 50px;
  padding-top: 20px;
}

.faq-section-title {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.faq-section-intro {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4) 0%, rgba(58, 15, 12, 0.35) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
  border-color: var(--accent);
}

.faq-item .faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  padding: 5px 0;
  position: relative;
}

.faq-item .faq-question::after {
  content: '+';
  position: absolute;
  right: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.faq-item .faq-question h3 {
  flex: 1;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
  padding-right: 40px;
}

.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  padding: 0 20px 0 45px;
}

.faq-item.active .faq-answer {
  max-height: 2000px;
  opacity: 1;
  padding: 20px 20px 20px 45px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  margin-top: 10px;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.faq-answer p:last-child,
.faq-answer ul:last-child,
.faq-answer ol:last-child {
  margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 10px;
  color: #ffffff;
}

.faq-answer a {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.faq-answer a:hover {
  color: #FFC107;
  text-decoration: none;
}

.faq-answer strong {
  color: #FFD700;
  font-weight: 700;
}

/* FAQ Page Responsive */
@media (max-width: 992px) {
  .faq-sidebar {
    position: static;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 50px 0 40px;
  }

  .faq-hero-title {
    font-size: 2rem;
  }

  .faq-hero-subtitle {
    font-size: 1rem;
  }

  .faq-hero-search {
    flex-direction: column;
  }

  .faq-section-title {
    font-size: 1.8rem;
  }

  .faq-question h3 {
    font-size: 1.2rem;
  }

  .faq-answer {
    padding-left: 0;
  }
}

.faq-final-cta {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  margin-top: 50px;
}

.faq-cta-content h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
}

.faq-cta-content p {
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

.faq-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-cta-buttons .btn {
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .faq-final-cta {
    padding: 30px 20px;
  }

  .faq-cta-content h2 {
    font-size: 1.8rem;
  }

  .faq-cta-content p {
    font-size: 1rem;
  }

  .faq-cta-buttons {
    flex-direction: column;
  }

  .faq-cta-buttons .btn {
    width: 100%;
  }
}

/* Homepage Info Sections */
.home-info-section {
  margin: 4rem 0;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

/* About Section Enhanced */
.about-section {
  position: relative;
  padding: 3rem 0;
}

.about-header {
  text-align: center;
  margin-bottom: 2rem;
}

.about-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
  color: var(--accent);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.about-feature-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.5), rgba(58, 15, 12, 0.5));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.about-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.about-feature-card:hover::before {
  left: 100%;
}

.about-feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
  border-color: var(--accent);
}

.feature-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.feature-icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent);
  border-radius: 50%;
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.about-feature-card .info-icon {
  font-size: 3.5rem;
  margin-bottom: 0;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.about-feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.about-feature-card p {
  color: var(--muted);
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  color: #2c1d16;
  padding: 0.4rem 1rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.5rem;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.3), rgba(58, 15, 12, 0.3));
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.about-stat:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.about-stat .stat-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-name {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-section {
    padding: 2rem 1.5rem;
  }
  
  .about-stats-row {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
}

/* App Download Section Enhanced */
.app-section {
  position: relative;
  padding: 3rem 0;
}

.app-header {
  text-align: center;
  margin-bottom: 2rem;
}

.app-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
  color: var(--accent);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.app-download-box {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.5), rgba(58, 15, 12, 0.5));
  backdrop-filter: blur(10px);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.app-download-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
  animation: appGlow 6s ease-in-out infinite;
}

@keyframes appGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(10%, 10%) scale(1.1); opacity: 0.8; }
}

.app-badge-top {
  display: inline-block;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  color: #2c1d16;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.app-promo-icon-large {
  font-size: 5rem;
  margin: 1rem 0;
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.3));
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.app-download-box h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.app-tagline {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.app-bonus-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
  padding: 1.5rem;
  border-radius: 15px;
  margin: 1.5rem 0;
  border: 2px solid var(--accent);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.bonus-icon {
  font-size: 3rem;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

.bonus-text {
  text-align: left;
}

.bonus-amount {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.bonus-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.app-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  text-align: left;
}

.app-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0;
  color: var(--muted);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.app-feature-list li:last-child {
  border-bottom: none;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  color: #2c1d16;
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.app-platforms {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.platform-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4), rgba(58, 15, 12, 0.4));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.platform-card:hover {
  transform: translateX(5px);
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
}

.platform-icon {
  font-size: 3rem;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
  flex-shrink: 0;
}

.platform-info {
  flex: 1;
}

.platform-info h4 {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.platform-info p {
  color: var(--muted);
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.platform-size {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

.platform-btn {
  flex-shrink: 0;
  padding: 0.8rem 1.5rem;
}

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-mini {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.3), rgba(58, 15, 12, 0.3));
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-mini:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.2);
}

.mini-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.mini-text {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 768px) {
  .app-download-box {
    padding: 2rem 1.5rem;
  }
  
  .app-bonus-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .bonus-text {
    text-align: center;
  }
  
  .platform-card {
    flex-direction: column;
    text-align: center;
  }
  
  .platform-btn {
    width: 100%;
  }
  
  .app-features-grid {
    grid-template-columns: 1fr;
  }
}

/* Promotions Section Enhanced */
.promotions-section {
  position: relative;
  padding: 3rem 0;
}

.promotions-header {
  text-align: center;
  margin-bottom: 2rem;
}

.promotions-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
  color: var(--accent);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.promo-showcase-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.5), rgba(58, 15, 12, 0.5));
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}

.promo-showcase-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 60%);
  animation: promoGlow 8s ease-in-out infinite;
}

@keyframes promoGlow {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  50% { transform: translate(20%, 20%); opacity: 0.6; }
}

.promo-showcase-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

.promo-showcase-card.vip {
  border-image: linear-gradient(135deg, #FFD700, #FFA500, #FFD700) 1;
}

.promo-showcase-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.35);
  border-color: var(--accent);
}

.promo-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.promo-showcase-card:hover .promo-shine {
  left: 100%;
}

.promo-badge-corner {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  color: #2c1d16;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  z-index: 2;
}

.promo-icon-large {
  font-size: 4.5rem;
  margin: 1rem 0;
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.4));
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.05); }
}

.promo-showcase-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.promo-amount-large {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 1rem 0;
  filter: drop-shadow(0 3px 6px rgba(255, 215, 0, 0.4));
}

.promo-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.promo-highlights {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 1rem;
  margin: 1.5rem 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.highlight-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  color: #2c1d16;
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.75rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.4);
}

.promotions-footer {
  margin-top: 3rem;
}

.promo-cta-box {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4), rgba(58, 15, 12, 0.4));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.promo-cta-content h4 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.promo-cta-content p {
  color: var(--muted);
  margin: 0;
  font-size: 1.1rem;
}

.promo-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .promo-showcase-card {
    padding: 2rem 1.5rem;
  }
  
  .promo-amount-large {
    font-size: 2.5rem;
  }
  
  .promo-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .promo-cta-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .promo-cta-buttons .btn {
    width: 100%;
  }
}

/* Articles Section Enhanced */
.articles-section {
  position: relative;
  padding: 3rem 0;
}

.articles-header {
  text-align: center;
  margin-bottom: 2rem;
}

.articles-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
  color: var(--accent);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.article-featured-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.5), rgba(58, 15, 12, 0.5));
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.article-featured-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05), transparent 70%);
  animation: articleGlow 10s ease-in-out infinite;
}

@keyframes articleGlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10%, 10%) rotate(180deg); }
}

.article-featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
  border-color: var(--accent);
}

.article-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-featured-card:hover .article-img {
  transform: scale(1.1);
}

.article-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
}

.article-badge.featured {
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  color: #2c1d16;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.article-content {
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.article-category {
  display: inline-block;
  background: rgba(255, 215, 0, 0.15);
  color: var(--accent);
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.article-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.article-excerpt {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.meta-icon {
  font-size: 1rem;
}

.article-btn {
  display: inline-block;
  margin-top: 0.5rem;
}

.articles-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.article-compact-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4), rgba(58, 15, 12, 0.4));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.article-compact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.5s ease;
}

.article-compact-card:hover::before {
  left: 100%;
}

.article-compact-card:hover {
  transform: translateX(5px);
.article-compact-thumb {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.compact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-compact-card:hover .compact-img {
  transform: scale(1.15);
} justify-content: center;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.article-compact-content {
  flex: 1;
}

.article-compact-content .article-category {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  padding: 0.2rem 0.8rem;
}

.article-compact-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
  line-height: 1.3;
}

.article-compact-content p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.article-link-arrow {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.article-link-arrow:hover {
  color: #FFE55C;
  transform: translateX(5px);
}

.articles-footer {
  margin-top: 3rem;
}

.articles-cta-box {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4), rgba(58, 15, 12, 0.4));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.articles-cta-content h4 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.articles-cta-content p {
  color: var(--muted);
  margin: 0;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .article-featured-card {
    margin-bottom: 1.5rem;
  }
  
  .article-image {
    height: 200px;
  }
  
  .article-content h3 {
    font-size: 1.3rem;
  }
  
  .article-compact-card {
    gap: 1rem;
  }
  
  .article-compact-thumb {
    width: 80px;
    height: 80px;
  }
  
  .articles-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .articles-cta-content h4 {
    font-size: 1.5rem;
  }
}

.info-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.info-section-title {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.4));
}

.info-section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.info-section-text strong {
  color: var(--accent-2);
  font-weight: 600;
}

/* Info Feature Cards */
.info-feature-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4), rgba(58, 15, 12, 0.4));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.info-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.25);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.info-feature-card h3 {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.info-feature-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* App Promo Card */
.app-promo-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.5), rgba(58, 15, 12, 0.5));
  backdrop-filter: blur(10px);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.app-promo-icon {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.app-promo-card h3 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.app-promo-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.app-promo-features li {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
}

.app-download-cta {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4), rgba(58, 15, 12, 0.4));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.app-download-cta h3 {
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

/* Promo Feature Cards */
.promo-feature-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.5), rgba(58, 15, 12, 0.5));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.promo-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.3);
  border-color: var(--accent);
}

.promo-badge-home {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--bg3);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.promo-feature-card h3 {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.promo-amount-home {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent);
  margin: 1rem 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.promo-feature-card p {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Article Preview Cards */
.article-preview-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4), rgba(58, 15, 12, 0.4));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
  border-color: var(--accent);
}

.article-cat {
  display: inline-block;
  background: rgba(255, 215, 0, 0.2);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.article-preview-card h3 {
  font-size: 1.2rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.article-preview-card p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.article-link {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.article-link:hover {
  color: var(--accent);
}

/* FAQ Preview Cards */
.faq-preview-card {
  background: rgba(122, 42, 34, 0.3);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  transition: transform 0.3s ease, background 0.3s ease;
  height: 100%;
}

.faq-preview-card:hover {
  transform: translateX(8px);
  background: rgba(122, 42, 34, 0.4);
}

.faq-preview-card h3 {
  font-size: 1.15rem;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.faq-preview-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive adjustments for info sections */
@media (max-width: 768px) {
  .home-info-section {
    margin: 2rem 0;
    padding: 2rem 0;
  }
  
  .info-section-title {
    font-size: 2rem;
  }
  
  .info-section-text {
    font-size: 1rem;
  }
  
  .promo-amount-home {
    font-size: 1.5rem;
  }
}

/* CTA Section */
.cta-section {
  position: relative;
  margin: 5rem auto 3rem;
  width: calc(100% - 32px);
  max-width: 1200px;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.8), rgba(58, 15, 12, 0.8));
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.15), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 165, 0, 0.15), transparent 50%);
  pointer-events: none;
  animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  color: #2c1d16;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  box-shadow: 
    0 4px 15px rgba(255, 215, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.2;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.cta-description {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-description strong {
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.cta-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-divider {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 280px;
}

.cta-btn-primary span,
.cta-btn-secondary span {
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
}

.cta-btn-primary small,
.cta-btn-secondary small {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0 1.5rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  color: #2c1d16;
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.cta-trust {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  opacity: 0.9;
}

/* CTA Responsive */
@media (max-width: 768px) {
  .cta-section {
    margin: 3rem auto 2rem;
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-divider {
    display: none;
  }
  
  .cta-stats {
    gap: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    min-width: 100%;
  }
  
  .cta-features {
    gap: 1rem;
  }
  
  .cta-feature {
    font-size: 0.9rem;
  }
}
.container{max-width:1200px; margin:0 auto; padding:16px}

/* Header and Navigation */
.header {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.98), rgba(58, 15, 12, 0.98));
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 6000;
}

.header.header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 6000;
}

/* Home anchor offsets for sticky header */
.game-section,
.home-info-section,
.cta-section {
  scroll-margin-top: 100px;
}

body.home-page {
  padding-top: 100px;
}

.navbar {
  position: relative;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.brand-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.navbar-brand .brand-logo-img {
  height: 34px;
}

.footer-brand .brand-logo-img {
  height: 40px;
}

.brand-logo {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #2c1d16;
  font-weight: 900;
  font-size: 1.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  letter-spacing: 1px;
}

.brand-title {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  padding-left: 0.25rem;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}

.desktop-menu {
  display: flex;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--accent);
  background: rgba(255, 215, 0, 0.1);
}

.nav-link:hover::before {
  width: 80%;
}

.nav-link.active {
  color: var(--accent);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.nav-link.active::before {
  width: 80%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-btn {
  padding: 0.6rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  border-radius: 8px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  position: relative;
  z-index: 7001;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.98), rgba(58, 15, 12, 0.98));
  backdrop-filter: blur(20px);
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
  z-index: 7000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 12px;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--accent);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(5px);
}

.mobile-menu-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  margin: 1rem 0;
}

@media (max-width: 992px) {
  .desktop-menu {
    display: none;
  }

  /* Keep Register/Login visible on mobile/tablet next to hamburger */
  .navbar-actions {
    gap: 0.5rem;
  }

  .navbar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
    line-height: 1;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 576px) {
  .navbar-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 0.75rem 0;
  }
  
  .brand-logo {
    font-size: 1.2rem;
    padding: 0.3rem 0.6rem;
  }
  
  .brand-title {
    font-size: 1.1rem;
  }
  
  .brand-tagline {
    font-size: 0.65rem;
  }
}

/* Old Header - Deprecated */
.brand{display:none}


/* Hero Banner */
.hero{margin-top:24px; display:flex; gap:16px;}
.banner{flex:1; background:linear-gradient(135deg, #b12a1f 0%, #ff6a00 60%), radial-gradient(800px 260px at 80% 20%, rgba(255,255,255,.15), rgba(255,255,255,0)); border-radius:22px; padding:0; position:relative; overflow:hidden;}
.banner-inner{display:none}
.carousel{position:relative; height:auto; isolation:isolate;}
.slides{display:flex; transition:transform .6s ease; will-change:transform;}
.slide{min-width:100%; display:block; position:relative;}
.slide img{width:100%; height:auto; display:block;}
.slide::after{content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,0) 60%, rgba(0,0,0,.1)); pointer-events:none;}
.slide .banner-title{margin-bottom:6px}
.carousel-controls{position:absolute; inset:0; display:flex; align-items:center; justify-content:space-between; padding:0 12px; z-index:3; pointer-events:none;}
.carousel-btn{width:38px; height:38px; border-radius:50%; background:rgba(0,0,0,.35); color:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer; user-select:none; backdrop-filter: blur(2px);}
.carousel-btn{pointer-events:auto; touch-action:manipulation;}
.carousel-indicators{position:absolute; bottom:10px; left:0; right:0; display:flex; justify-content:center; gap:8px; z-index:4;}
.dot{width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,.5); border:1px solid rgba(0,0,0,.2); cursor:pointer; touch-action:manipulation;}
.dot.active{background:#fff}
.banner-title{font-size:30px; font-weight:800; color:var(--text); text-shadow:0 2px 6px rgba(0,0,0,.4)}
.banner-sub{color:var(--muted)}
.side-card{width:280px; background:linear-gradient(135deg, #7a2a22, #b54235); border-radius:22px; padding:16px}

/* Nav Chips */
.chip-row{
  margin-top:18px; 
  display:flex; 
  gap:0; 
  background:
    linear-gradient(180deg, rgba(255,255,255,.15) 0%, rgba(255,255,255,0) 50%),
    linear-gradient(180deg, #d32f2f 0%, #b71c1c 50%, #5a0a0a 100%);
  border-radius:50px; 
  padding:8px 12px; 
  box-shadow:
    0 8px 24px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.25),
    inset 0 -2px 0 rgba(0,0,0,.3);
  border:1px solid rgba(0,0,0,.4);
}
.chip{
  flex:1; 
  min-width:90px; 
  display:flex; 
  flex-direction:column; 
  align-items:center; 
  justify-content:center; 
  gap:4px; 
  padding:12px 8px; 
  background:transparent; 
  border:none; 
  color:#fff; 
  cursor:pointer; 
  position:relative; 
  transition:all .3s ease; 
  font-size:12px; 
  font-weight:600;
}
.chip-icon{
  width:48px;
  height:48px;
  object-fit:contain;
  filter:grayscale(100%) brightness(0.8); 
  transition:all .3s ease;
  transform:scale(1);
}
.chip:hover .chip-icon{
  filter:grayscale(0%) brightness(1.1);
  transform:scale(1.2);
}
.chip.active .chip-icon{
  filter:grayscale(0%) brightness(1.2);
  transform:scale(1.1);
}
.chip:hover{
  color:#FFD700;
}
.chip.active{
  color:#FFD700;
}/* Section Title */
@media (max-width: 768px) {
  .chip-row { overflow-x: auto; gap: 8px; padding: 8px 12px; -webkit-overflow-scrolling: touch; }
  .chip { flex: 0 0 auto; min-width: 80px; padding: 10px 8px; }
  .chip-icon { width: 32px; height: 32px; }
}
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin: 40px 0 20px;
  filter: drop-shadow(0 3px 6px rgba(255, 215, 0, 0.3));
}
.title-badge{
  background:linear-gradient(180deg, #FFD700 0%, #FFA500 100%); 
  color:#2b1a0a; 
  padding:10px 40px; 
  border-radius:50px; 
  font-weight:800; 
  font-size:16px;
  display:inline-block; 
  box-shadow:
    0 4px 0 #aa7b00,
    0 6px 12px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.4);
  text-shadow:0 1px 2px rgba(0,0,0,.2);
}

/* Game Section & Cards */
.game-section{margin-top:24px}
.games-container{
  background:linear-gradient(180deg, rgba(60,20,15,.6), rgba(40,15,10,.5));
  backdrop-filter:blur(10px);
  border-radius:20px; 
  padding:20px; 
  border:1px solid rgba(255,200,150,.15);
  box-shadow:
    0 8px 32px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.1);
}
.games-header{display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; padding:0 4px}
@media (max-width: 768px) {
  .games-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .games-header-more { align-self: flex-end; }
}
.games-header-title{font-size:18px; font-weight:800; background:linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; filter:drop-shadow(0 2px 4px rgba(255,215,0,0.4))}
.games-header-more{color:#FFD700; font-size:14px; font-weight:600; cursor:pointer; text-decoration:none; transition:opacity .2s}
.games-header-more:hover{opacity:.8; color:#FFD700}
.game-card{
  position:relative; 
  background:linear-gradient(180deg, rgba(255,240,220,.15), rgba(255,230,200,.1));
  backdrop-filter:blur(8px);
  border-radius:16px; 
  overflow:hidden; 
  box-shadow:
    0 4px 12px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.2);
  border:1px solid rgba(255,200,150,.2);
  transition:transform .2s ease;
}
.game-card:hover{transform:translateY(-4px); box-shadow:0 8px 20px rgba(0,0,0,.35)}
.card-badge{position:absolute; top:8px; left:8px; background:rgba(255,80,50,.9); color:#fff; padding:4px 10px; border-radius:8px; font-size:12px; font-weight:700; z-index:2; text-transform:uppercase; box-shadow:0 2px 4px rgba(0,0,0,.3)}
.game-thumb{aspect-ratio:1; background:rgba(217,200,158,.1); overflow:hidden}
.game-thumb img{width:100%; height:100%; object-fit:cover; display:block}
@media (max-width: 768px) {
  .game-card { border-radius: 12px; }
}
.game-info{padding:10px; text-align:center; background:linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.3))}
.game-title{font-weight:700; font-size:14px; color:#fff; text-shadow:0 1px 2px rgba(0,0,0,.5)}

/* Legacy grid cleanup */

/* Footer Styles */
.footer {
  background: linear-gradient(180deg, var(--bg3) 0%, var(--bg2) 50%, var(--bg) 100%);
  border-top: 3px solid rgba(255, 215, 0, 0.2);
  padding: 60px 0 20px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 215, 0, 0.5) 20%, 
    rgba(255, 215, 0, 0.8) 50%, 
    rgba(255, 215, 0, 0.5) 80%, 
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-section {
  margin-bottom: 30px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.footer-text {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.footer-brand {
  margin-top: 20px;
}

.footer-section .footer-brand {
  margin-top: 0;
  margin-bottom: 14px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  text-decoration: none;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.18);
  transition: transform 180ms ease, background 180ms ease, filter 180ms ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 215, 0, 0.14);
}

.footer-social-link:focus {
  outline: none;
}

.footer-social-link:focus-visible {
  outline: 2px solid rgba(255, 215, 0, 0.7);
  outline-offset: 3px;
}

.footer-brand .brand-logo {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.5));
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-payments {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  text-align: center;
}

.footer-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.payment-badge {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
}

.payment-badge:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 140, 0, 0.2) 100%);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.footer-notice {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.05);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.footer-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-notice strong {
  color: var(--accent);
  font-weight: 700;
}

.footer-description {
  margin-top: 30px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(255, 140, 0, 0.03) 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.footer-description p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.8;
  text-align: center;
}

.footer-description strong {
  color: var(--accent);
  font-weight: 600;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  text-align: center;
}

.footer-copyright p,
.footer-disclaimer p {
  margin: 8px 0;
  color: rgba(230, 214, 201, 0.7);
  font-size: 0.8rem;
}

.footer-copyright {
  font-weight: 600;
}

.footer-disclaimer {
  font-style: italic;
  color: rgba(230, 214, 201, 0.5);
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
    margin-top: 50px;
  }

  .footer-section {
    margin-bottom: 35px;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  .payment-methods {
    gap: 10px;
  }

  .payment-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .footer-notice,
  .footer-description {
    padding: 15px;
  }

  .footer-description p {
    font-size: 0.8rem;
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  z-index: 1100;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  filter: brightness(1.05);
}

.back-to-top:active {
  transform: translateY(1px);
}

.back-to-top:focus {
  outline: none;
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(255, 215, 0, 0.7);
  outline-offset: 3px;
}

@media (max-width: 576px) {
  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}

/* Responsive */
@media (max-width: 960px){ .hero{flex-direction:column} .side-card{width:100%} }
@media (prefers-color-scheme: light){ body{background:#fff; color:#222} }

/* Button Styles - Glossy Gold Gradient */
.btn, button.btn {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  color: #2c1d16;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 0 #CC8800,
    0 6px 15px rgba(255, 140, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn::before, button.btn::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:hover::before, button.btn:hover::before {
  left: 100%;
}

.btn:hover, button.btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 0 #CC8800,
    0 8px 20px rgba(255, 140, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.btn:active, button.btn:active {
  transform: translateY(2px);
  box-shadow: 
    0 2px 0 #CC8800,
    0 3px 10px rgba(255, 140, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  color: #2c1d16;
  box-shadow: 
    0 4px 0 #CC8800,
    0 6px 15px rgba(255, 140, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFE55C 0%, #FFB84D 50%, #FFA500 100%);
  color: #2c1d16;
  transform: translateY(-2px);
  box-shadow: 
    0 6px 0 #CC8800,
    0 8px 20px rgba(255, 140, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 
    0 2px 0 #CC8800,
    0 3px 10px rgba(255, 140, 0, 0.3);
}

.btn-outline-primary {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 
    0 4px 0 rgba(204, 136, 0, 0.3),
    0 6px 15px rgba(255, 140, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  color: #2c1d16;
  border-color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 
    0 6px 0 #CC8800,
    0 8px 20px rgba(255, 140, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-outline-primary:active {
  transform: translateY(2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 10px;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  border-radius: 6px;
}

/* Carousel buttons */
.carousel-btn {
  background: linear-gradient(135deg, #FFD700, #FFA500) !important;
  color: #2c1d16 !important;
  border: none !important;
  width: 38px;
  height: 38px;
  padding: 0 !important;
  border-radius: 999px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-sizing: border-box;
  box-shadow: 
    0 3px 0 #CC8800,
    0 4px 10px rgba(255, 140, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

.dot {
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.dot:focus {
  outline: none;
}

.dot:focus-visible {
  outline: 2px solid rgba(255, 215, 0, 0.7);
  outline-offset: 3px;
}

@media (max-width: 576px) {
  .carousel-btn {
    width: 34px;
    height: 34px;
  }
}

.carousel-btn:hover {
  background: linear-gradient(135deg, #FFE55C, #FFB84D) !important;
  transform: translateY(-1px);
  box-shadow: 
    0 4px 0 #CC8800,
    0 6px 12px rgba(255, 140, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

.carousel-btn:active {
  transform: translateY(1px);
}

/* FAQs Section Enhanced */
.faqs-section {
  position: relative;
  padding: 3rem 0;
}

.faqs-header {
  text-align: center;
  margin-bottom: 2rem;
}

.faqs-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
  color: var(--accent);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.faqs-container {
  position: relative;
}

.faq-accordion-card {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.4), rgba(58, 15, 12, 0.4));
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.faq-accordion-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-accordion-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.25);
}

.faq-accordion-card:hover::before {
  opacity: 1;
}

.faq-accordion-card.active {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.faq-icon-wrapper {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.faq-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.3));
}

.faq-accordion-card:hover .faq-icon-wrapper {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 165, 0, 0.25));
  transform: scale(1.05);
}

.faq-q-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-q-content h3 {
  font-size: 1.15rem;
  margin: 0;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
  font-weight: 600;
}

.faq-toggle {
  font-size: 2rem;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
}

.faq-accordion-card.active .faq-toggle {
  transform: rotate(45deg);
  background: rgba(255, 215, 0, 0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.faq-accordion-card.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 1.5rem 1.5rem 5.5rem;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

.faqs-footer {
  margin-top: 3rem;
}

.faqs-cta-box {
  background: linear-gradient(135deg, rgba(122, 42, 34, 0.5), rgba(58, 15, 12, 0.5));
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.faqs-cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 60%);
  animation: faqCtaGlow 8s ease-in-out infinite;
}

@keyframes faqCtaGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15%, 15%); }
}

.faqs-cta-icon {
  font-size: 4rem;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.4));
  animation: faqIconBounce 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes faqIconBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.05); }
}

.faqs-cta-content {
  flex: 1;
  z-index: 1;
}

.faqs-cta-content h4 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.faqs-cta-content p {
  color: var(--muted);
  margin: 0;
  font-size: 1.1rem;
}

.faqs-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 1;
}

@media (max-width: 768px) {
  .faq-accordion-card.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  
  .faq-q-content h3 {
    font-size: 1rem;
  }
  
  .faq-icon-wrapper {
    width: 45px;
    height: 45px;
  }
  
  .faq-icon {
    font-size: 1.5rem;
  }
  
  .faqs-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .faqs-cta-icon {
    font-size: 3rem;
  }
  
  .faqs-cta-content h4 {
    font-size: 1.5rem;
  }
  
  .faqs-cta-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .faqs-cta-buttons .btn {
    width: 100%;
  }
}
