/* ==========================================================================
   TASHANWIN - Signature #110D14 Dark & #FED358 Gold Stylesheet
   Clean, Professional, Zero-Emoji with Elegant SVG Icons
   ========================================================================== */

:root {
  --bg-primary: #110D14;
  --bg-secondary: #18131d;
  --bg-card: #1f1826;
  --bg-card-hover: #2a2134;
  
  --text-primary: #ffffff;
  --text-secondary: #e2d9ec;
  --text-muted: #9c8ea9;
  
  --gold-primary: #FED358;
  --gold-secondary: #FFB472;
  --gold-gradient: linear-gradient(180deg, #FED358 0%, #FFB472 100%);
  --gold-glow: rgba(254, 211, 88, 0.25);
  
  --green-primary: #22c55e;
  --green-gradient: linear-gradient(180deg, #4ade80 0%, #22c55e 100%);
  
  --border-color: rgba(254, 211, 88, 0.15);
  --border-gold: rgba(254, 211, 88, 0.4);
  
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 15px rgba(254, 211, 88, 0.25);

  --font-sans: 'Arial', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 70px;
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--gold-secondary);
}

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

.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  stroke: currentColor;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

h1 { font-size: 2.3rem; line-height: 1.2; }
h2 { font-size: 1.85rem; line-height: 1.3; }
h3 { font-size: 1.35rem; }
p { margin-bottom: 1rem; color: var(--text-primary); }

/* ==========================================================================
   Header & Navbar (Clean Logo - No Official Badge)
   ========================================================================== */
.header {
  background-color: #110D14;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  height: 52px;
  text-decoration: none;
}

.logo img {
  height: 48px;
  max-height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.logo:hover img {
  transform: scale(1.03);
}

.logo span.gold {
  color: var(--gold-primary);
}

/* Nav Links */
.nav {
  display: none;
  list-style: none;
  gap: 1.8rem;
  align-items: center;
}

.nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

/* CTA Buttons */
.cta-buttons {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 992px) {
  .nav {
    display: flex;
  }
  .cta-buttons {
    display: flex;
  }
}

/* Buttons */
.btn {
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-md);
  font-weight: bold;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  min-height: 42px;
  line-height: 1.2;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #110D14 !important;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 211, 88, 0.4);
}

.btn-secondary {
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary) !important;
  background: transparent;
}

.btn-secondary:hover {
  background-color: var(--gold-primary);
  color: #110D14 !important;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary) !important;
  background: rgba(254, 211, 88, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--gold-primary);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background: #140f19;
  border-bottom: 1px solid var(--border-color);
  padding: 16px 20px;
}

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

.mobile-menu .nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.mobile-menu .nav-mobile a {
  color: #fff;
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.mobile-menu .mobile-cta-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  padding: 44px 0 32px;
  background: radial-gradient(circle at 50% 10%, rgba(254, 211, 88, 0.12), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254, 211, 88, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

.hero-title .gold-text {
  color: var(--gold-primary);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid var(--border-color);
  padding-top: 18px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.trust-item .icon-svg {
  color: var(--gold-primary);
}

.hero-card {
  background: linear-gradient(145deg, var(--bg-card), #16101c);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.bonus-box {
  background: rgba(254, 211, 88, 0.08);
  border: 1px dashed var(--gold-primary);
  padding: 16px;
  border-radius: var(--radius-md);
  margin: 18px 0;
}

.bonus-val {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-primary);
  display: block;
}

/* ==========================================================================
   Sections & Cards
   ========================================================================== */
.section {
  padding: 50px 0;
}

.section-dark {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.under-hero-description {
  padding: 1.8rem 0;
  background: linear-gradient(135deg, #110D14 0%, rgba(254, 211, 88, 0.08) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.under-hero-description .container {
  border-left: 3px solid var(--gold-primary);
  padding-left: 1.2rem;
}

.under-hero-description p {
  font-size: 1.05rem;
  color: #fff9ea;
  margin: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  display: block;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
}

.card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(254, 211, 88, 0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gold-primary);
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Games Grid
   ========================================================================== */
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

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

.game-banner {
  height: 155px;
  background: #140e1a;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.game-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-banner img {
  transform: scale(1.06);
}

.game-body {
  padding: 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.game-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ==========================================================================
   Steps
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}

.step-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(254, 211, 88, 0.2);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-icon {
  font-size: 0.9rem;
  transition: transform 0.2s ease;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-top: 1px solid rgba(254, 211, 88, 0.1);
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #0b080d;
  border-top: 1px solid var(--border-color);
  padding: 44px 0 28px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 32px;
}

.footer-col h4 {
  color: var(--gold-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.disclaimer-box {
  background: rgba(254, 211, 88, 0.03);
  border: 1px solid var(--border-color);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--border-color);
  padding-top: 18px;
  font-size: 0.85rem;
}

/* ==========================================================================
   Sticky Mobile CTA Bar
   ========================================================================== */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(17, 13, 20, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--gold-primary);
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  z-index: 999;
}

.sticky-mobile-cta .btn {
  flex: 1;
  padding: 11px 12px;
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .sticky-mobile-cta {
    display: none;
  }
}

/* ==========================================================================
   Introductory Overview Section
   ========================================================================== */
.intro-section {
  padding: 44px 0;
  border-bottom: 1px solid var(--border-color);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 992px) {
  .intro-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.intro-content h2 {
  font-size: 1.85rem;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--gold-primary);
}

.intro-content p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.intro-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
  background: var(--bg-card);
}

.intro-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
