@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Raleway:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary-black: #0a0a0a;
  --rich-black: #1a1a1a;
  --gold: #d4af37;
  --gold-light: #f4d03f;
  --gold-dark: #b8941e;
  --white: #ffffff;
  --cream: #f8f6f0;
  --red-accent: #c41e3a;
  --text-gold: #e8c87c;
  --border-gold: rgba(212, 175, 55, 0.3);

  --accent-cyan: #00d4ff;
  --accent-purple: #6c5ce7;
  --accent-pink: #ff006e;
  --text-light: #f8f6f0;
  --text-muted: #c4b998;
  --border-glow: rgba(212, 175, 55, 0.3);
  --card-bg: rgba(26, 26, 26, 0.8);
}

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

body {
  font-family: "Raleway", sans-serif;
  background: var(--primary-black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      135deg,
      var(--primary-black) 0%,
      var(--rich-black) 100%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 35px,
      rgba(212, 175, 55, 0.02) 35px,
      rgba(212, 175, 55, 0.02) 70px
    );
  z-index: -1;
}

.top-bar {
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid var(--border-gold);
  padding: 10px 0;
  font-size: 13px;
}

.top-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gold);
}

.top-bar-item i {
  color: var(--gold);
}

.navbar {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(212, 175, 55, 0.1);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Cinzel", serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--gold-dark),
    var(--gold-light),
    var(--gold-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.logo::after {
  content: "◆";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-menu a {
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 15px;
  letter-spacing: 0.5px;
}

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

.nav-buttons {
  display: flex;
  gap: 15px;
}

.btn-login,
.btn-signup {
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
}

.btn-login {
  background: transparent;
  color: var(--primary-black);
  border: 2px solid var(--primary-black);
}

.btn-login:hover {
  background: var(--primary-black);
  color: var(--gold);
}

.btn-signup {
  background: linear-gradient(
    135deg,
    var(--gold-dark),
    var(--gold),
    var(--gold-light)
  );
  color: var(--primary-black);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.hero {
  padding: 120px 20px 100px;
  text-align: center;
  position: relative;
  background-image: url("../images/1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(26, 26, 26, 0.7) 100%
  );
  pointer-events: none;
}

.hero .container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: "Cinzel", serif;
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.1;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-subtitle {
  font-size: 22px;
  color: var(--text-gold);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

.btn-primary {
  display: inline-block;
  padding: 18px 50px;
  background: linear-gradient(
    135deg,
    var(--gold-dark),
    var(--gold),
    var(--gold-light)
  );
  color: var(--primary-black);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 800;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Cinzel", serif;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.games-section {
  padding: 100px 20px;
  background: var(--rich-black);
  border-top: 1px solid var(--border-gold);
}

.games-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gold);
  font-size: 18px;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.game-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 40px 35px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.game-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.game-icon {
  font-size: 48px;
  margin-bottom: 25px;
  color: var(--gold);
}

.game-card h3 {
  font-family: "Cinzel", serif;
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--gold-light);
  font-weight: 700;
}

.game-card p {
  color: var(--text-gold);
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.7;
}

.game-details {
  margin: 25px 0;
  padding: 25px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

.game-detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.game-detail-item:last-child {
  margin-bottom: 0;
}

.game-detail-label {
  color: var(--text-gold);
  font-weight: 500;
}

.game-detail-value {
  color: var(--gold);
  font-weight: 700;
  font-family: "Cinzel", serif;
}

.jackpot-status {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--primary-black);
  border-radius: 25px;
  font-weight: 800;
  font-size: 14px;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 35px;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--primary-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.how-it-works {
  padding: 100px 20px;
}

.how-it-works .container {
  max-width: 1200px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-top: 60px;
}

.step-card {
  text-align: center;
  padding: 40px 30px;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--primary-black);
  border-radius: 50%;
  font-size: 36px;
  font-weight: 900;
  font-family: "Cinzel", serif;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.step-card h3 {
  font-family: "Cinzel", serif;
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--gold);
}

.step-card p {
  color: var(--text-gold);
  font-size: 15px;
  line-height: 1.7;
}

.faq-section {
  padding: 100px 20px;
  background: var(--rich-black);
  border-top: 1px solid var(--border-gold);
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 50px;
}

.faq-item {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gold);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--gold-light);
  font-size: 17px;
  user-select: none;
  font-family: "Raleway", sans-serif;
}

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

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
  color: var(--gold);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-gold);
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

.cta-section {
  padding: 120px 20px;
  text-align: center;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.9),
    rgba(10, 10, 10, 0.9)
  );
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
}

.cta-section .container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: "Cinzel", serif;
  font-size: 52px;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta-section p {
  font-size: 20px;
  color: var(--text-gold);
  margin-bottom: 40px;
}

.site-footer {
  background: rgba(0, 0, 0, 0.95);
  padding: 60px 20px 30px;
  border-top: 1px solid var(--border-gold);
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer .row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .site-footer .row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .site-footer .row {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  font-family: "Cinzel", serif;
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.site-footer p {
  color: var(--text-gold);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-heading {
  font-family: "Cinzel", serif;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-heading-blue {
  color: var(--gold-light);
}

.footer-heading-green {
  color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-gold);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.site-footer .fas {
  color: var(--gold);
}

.footer-img {
  height: 50px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  filter: brightness(1.2) contrast(1.1);
}

.footer-img:hover {
  opacity: 1;
}

.footer-img-invert {
  filter: brightness(0) invert(1) brightness(0.9);
}

.footer-img-invert:hover {
  filter: brightness(0) invert(1) brightness(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid var(--border-gold);
  color: var(--text-gold);
  font-size: 14px;
}

.g-5 {
  gap: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.me-2 {
  margin-right: 8px;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-2 {
  gap: 15px;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-lg-start {
  justify-content: flex-start;
}

@media (max-width: 992px) {
  .justify-content-lg-start {
    justify-content: center;
  }
}

.col-lg-4,
.col-lg-3,
.col-lg-2 {
  flex: 1;
}

.text-center {
  text-align: center;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--rich-black), var(--primary-black));
  border-top: 2px solid var(--gold);
  padding: 20px;
  z-index: 10000;
  display: block;
  box-shadow: 0 -5px 30px rgba(212, 175, 55, 0.3);
}

.cookie-consent.hidden {
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  color: var(--text-gold);
  margin: 0;
  font-size: 14px;
  flex: 1;
}

.cookie-content a {
  color: var(--gold);
  text-decoration: underline;
}

.btn-accept-cookies {
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--primary-black);
  border: none;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-accept-cookies:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-modal.hidden {
  display: none;
}

.age-modal-content {
  background: var(--rich-black);
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 50px 40px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
}

.age-modal-header {
  margin-bottom: 25px;
}

.age-modal-header i {
  font-size: 60px;
  color: var(--red-accent);
  margin-bottom: 15px;
}

.age-modal-header h2 {
  font-family: "Cinzel", serif;
  font-size: 28px;
  color: var(--gold);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.age-modal-content p {
  color: var(--text-gold);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.age-modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-confirm-age,
.btn-deny-age {
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Cinzel", serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-confirm-age {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--primary-black);
}

.btn-confirm-age:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-deny-age {
  background: transparent;
  border: 2px solid var(--red-accent);
  color: var(--red-accent);
}

.btn-deny-age:hover {
  background: var(--red-accent);
  color: white;
}

@media (max-width: 992px) {
  .top-bar .container {
    justify-content: center;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-login,
  .btn-signup {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .logo {
    font-size: 22px;
  }

  .logo::after {
    right: -18px;
    font-size: 12px;
  }

  .hero {
    padding: 80px 20px 60px;
  }

  .hero h1 {
    font-size: 38px;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-image-prompt {
    padding: 20px;
  }

  .hero-image-prompt h3 {
    font-size: 16px;
  }

  .hero-image-prompt p {
    font-size: 14px;
  }

  .btn-primary {
    padding: 16px 40px;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
    padding: 0 20px;
  }

  .games-section,
  .how-it-works,
  .faq-section {
    padding: 60px 20px;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .game-card {
    padding: 30px 25px;
  }

  .game-card h3 {
    font-size: 24px;
  }

  .game-details {
    padding: 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step-card {
    padding: 30px 20px;
  }

  .step-number {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 32px;
  }

  .step-card h3 {
    font-size: 20px;
  }

  .faq-question {
    padding: 20px;
    font-size: 15px;
  }

  .faq-icon {
    font-size: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }

  .cta-section {
    padding: 80px 20px;
  }

  .cta-section h2 {
    font-size: 32px;
  }

  .cta-section p {
    font-size: 16px;
  }

  .site-footer {
    padding: 40px 20px 20px;
  }

  .site-footer .row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo {
    font-size: 22px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .btn-accept-cookies {
    width: 100%;
  }

  .age-modal-content {
    padding: 30px 25px;
  }

  .age-modal-header h2 {
    font-size: 22px;
  }

  .age-modal-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-confirm-age,
  .btn-deny-age {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 8px 0;
    font-size: 12px;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 8px;
  }

  .navbar {
    padding: 15px 0;
  }

  .logo {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .btn-primary {
    padding: 14px 30px;
    font-size: 13px;
  }

  .section-title {
    font-size: 28px;
  }

  .game-icon {
    font-size: 40px;
  }

  .game-card h3 {
    font-size: 22px;
  }

  .game-detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 28px;
  }

  .cta-section h2 {
    font-size: 28px;
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--primary-black);
  cursor: pointer;
  padding: 5px;
}

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

.navbar .container {
  position: relative;
}

@media (max-width: 992px) {
  .nav-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 20px;
    right: 20px;
    z-index: 1000;
    border: 1px solid var(--border-gold);
    border-radius: 10px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}
