/* =============================================
   VDCasino — Premium Dark Theme CSS
   ============================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --bg-primary: #0a0e1a;
  --bg-secondary: #0f1429;
  --bg-tertiary: #141a30;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --bg-glass: rgba(15, 20, 41, 0.75);

  --accent-gold: #f5a623;
  --accent-gold-light: #ffc857;
  --accent-gold-dark: #d48d1a;
  --accent-teal: #00d4aa;
  --accent-teal-light: #33e0be;
  --accent-purple: #7c5cfc;
  --accent-red: #ff4d6a;

  --text-primary: #eaeaea;
  --text-secondary: #a0a8c0;
  --text-muted: #6b7394;
  --text-heading: #ffffff;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(245, 166, 35, 0.3);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #f5a623 0%, #ffc857 50%, #f5a623 100%);
  --gradient-hero: linear-gradient(160deg, #0a0e1a 0%, #141a30 40%, #1a1040 70%, #0a0e1a 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  --gradient-teal: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1140px;
  --container-padding: 0 24px;

  /* Typography */
  --font-primary: 'Inter', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);
  --shadow-glow-gold: 0 0 30px rgba(245, 166, 35, 0.25);
  --shadow-glow-teal: 0 0 30px rgba(0, 212, 170, 0.2);
  --shadow-elevated: 0 8px 40px rgba(0, 0, 0, 0.4);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

ul, ol {
  list-style: none;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent-gold-light);
}

p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ---------- Header / Navbar ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(10, 14, 26, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-heading);
}

.logo img {
  height: 40px;
  width: auto;
}

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

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-base);
}

.nav-menu a:hover {
  color: var(--accent-gold);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* CTA Button in Nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gradient-gold);
  color: #0a0e1a !important;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
  color: #0a0e1a !important;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(20px, -20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease forwards;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero h1 {
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

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

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #0a0e1a;
  box-shadow: 0 0 25px rgba(245, 166, 35, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(245, 166, 35, 0.5);
  color: #0a0e1a;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-3px);
}

.btn-teal {
  background: var(--gradient-teal);
  color: #0a0e1a;
  box-shadow: 0 0 25px rgba(0, 212, 170, 0.3);
}

.btn-teal:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-teal);
  color: #0a0e1a;
}

/* ---------- Content Sections ---------- */
.content-section {
  padding: var(--section-padding);
  position: relative;
}

.content-section:nth-child(even) {
  background: var(--bg-secondary);
}

.section-header {
  margin-bottom: 48px;
}

/* ---------- Glass Cards ---------- */
.glass-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.glass-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

/* ---------- Feature Grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.feature-item {
  padding: 28px;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.feature-item:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.feature-icon.gold { background: rgba(245, 166, 35, 0.15); }
.feature-icon.teal { background: rgba(0, 212, 170, 0.15); }
.feature-icon.purple { background: rgba(124, 92, 252, 0.15); }
.feature-icon.red { background: rgba(255, 77, 106, 0.15); }

.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ---------- Info Box ---------- */
.info-box {
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
}

.info-box.teal {
  background: rgba(0, 212, 170, 0.08);
  border-color: rgba(0, 212, 170, 0.2);
}

.info-box h4 {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-bottom: 8px;
}

.info-box.teal h4 {
  color: var(--accent-teal);
}

.info-box p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ---------- Steps List ---------- */
.steps-list {
  counter-reset: step;
}

.step-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  align-items: flex-start;
}

.step-item:last-child {
  border-bottom: none;
}

.step-number {
  counter-increment: step;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  color: #0a0e1a;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--text-heading);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ---------- Table Styles ---------- */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.styled-table thead {
  background: rgba(245, 166, 35, 0.1);
}

.styled-table th {
  padding: 14px 20px;
  text-align: left;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.styled-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.styled-table tbody tr:last-child td {
  border-bottom: none;
}

.styled-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* ---------- FAQ Accordion ---------- */
.faq-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item:hover {
  border-color: rgba(245, 166, 35, 0.2);
}

.faq-item.active {
  border-color: rgba(245, 166, 35, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-heading);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.1);
  color: var(--accent-gold);
  font-size: 1.2rem;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 64px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.08) 0%, rgba(0, 212, 170, 0.06) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cta-banner h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.cta-banner p {
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 48px 0 24px;
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.footer-col h4 {
  color: var(--text-heading);
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  color: var(--text-muted) !important;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Scroll Indicator ---------- */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(45deg) translate(5px, 5px); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: #0a0e1a;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: var(--shadow-glow-gold);
  transition: all var(--transition-base);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(245, 166, 35, 0.5);
}

/* ---------- Divider ---------- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  margin: 0;
  border: none;
}

/* ---------- Inline Links (anchor text SEO) ---------- */
.content-section a.inline-link {
  color: var(--accent-gold);
  font-weight: 600;
  border-bottom: 1px dashed rgba(245, 166, 35, 0.3);
  transition: all var(--transition-fast);
}

.content-section a.inline-link:hover {
  color: var(--accent-gold-light);
  border-bottom-color: var(--accent-gold);
}

/* ---------- Badge / Tag ---------- */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin: 4px 4px 4px 0;
}

.tag.teal {
  background: rgba(0, 212, 170, 0.12);
  color: var(--accent-teal);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 56px 0;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 40px 24px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform var(--transition-base);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  h2 {
    font-size: 1.4rem;
  }

  .glass-card {
    padding: 24px;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-inner {
    height: 60px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo img {
    height: 32px;
  }

  .container {
    padding: 0 16px;
  }

  .faq-question {
    padding: 16px;
    font-size: 0.92rem;
  }

  .faq-answer-inner {
    padding: 0 16px 16px;
  }
}

/* ---------- Content Visibility for Performance ---------- */
.content-section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* ---------- Print Styles ---------- */
@media print {
  .site-header,
  .back-to-top,
  .scroll-indicator,
  .hero::before,
  .hero::after {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}
