:root {
  --text-light: #fdf6f0;
  --border-color: #8b3d33;
  --accent-gold: #e6b800;
  --primary-dark: #2c1a0f;
  --text-dark-gray: #6e5e5a;
  --accent-green: #4c7c59;
  --primary: #5a2a1c;
  --accent-red: #d4392c;
  --text-gray: #a98c7f;
  --text-white: #ffffff;
  --primary-light: #a34f3b;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: Inter, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--primary)
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  line-height: 1.2
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .3s ease
}

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

.text-gold {
  color: var(--accent-gold)
}

.text-white {
  color: var(--text-white)
}

.section-header {
  margin-bottom: 3rem;
  text-align: center
}

.section-title {
  margin-bottom: .75rem;
  color: var(--text-white);
  font-size: 2.25rem
}

.section-description {
  margin: 0 auto;
  color: var(--text-gray);
  max-width: 600px
}

.header {
  box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
  z-index: 50;
  position: sticky;
  top: 0;
  background-color: var(--primary)
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0
}

.logo-text {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 1.75rem
}

.desktop-nav {
  display: none
}

.nav-link {
  margin-left: 2rem;
  color: var(--text-white);
  transition: color .2s
}

.nav-link:hover {
  color: var(--accent-gold)
}

.mobile-menu-button button {
  border: none;
  color: var(--text-white);
  cursor: pointer;
  font-size: 1.5rem;
  background: none
}

.mobile-nav {
  display: none;
  padding: 1rem 0;
  flex-direction: column
}

.mobile-nav .nav-link {
  margin-left: 0;
  padding: .5rem 0
}

.mobile-nav.active {
  display: flex
}

/* Hero */
.hero-banner {
  background-image: linear-gradient(to right, var(--primary-dark), var(--primary-light));
  overflow: hidden;
  position: relative;
  padding: 5rem 0
}

.hero-background {
  inset: 0;
  z-index: 0;
  position: absolute
}

.hero-background img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%
}

.hero-overlay {
  inset: 0;
  z-index: 1;
  position: absolute;
  background-color: rgba(0, 0, 0, .55)
}

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

.hero-title {
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text-white);
  font-size: 2.5rem
}

.hero-title span {
  display: block
}

.hero-description {
  margin-bottom: 2rem;
  color: var(--text-gray);
  font-size: 1.125rem
}

.hero-button {
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
  display: inline-block;
  color: var(--primary-dark);
  padding: .75rem 2rem;
  transition: all .3s ease;
  background-color: var(--accent-gold)
}

.hero-button:hover {
  transform: scale(1.05);
  background-color: #e6a533
}

.age-badge {
  border-radius: 9999px;
  right: 1.25rem;
  display: flex;
  z-index: 10;
  align-items: center;
  position: absolute;
  padding: .25rem .75rem;
  bottom: 1.25rem;
  background-color: hsla(0, 0%, 100%, .12)
}

.age-number {
  font-weight: 700;
  color: var(--text-white);
  margin-right: .5rem
}

.age-text {
  color: var(--text-gray);
  font-size: .875rem
}

/* Casinos */
.casinos-section {
  padding: 4rem 0;
  background-color: var(--primary)
}

.casino-card {
  margin-bottom: 2rem;
  border-radius: .75rem;
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  transition: all .3s ease;
  background-color: var(--primary-dark)
}

.casino-card:hover {
  transform: translateY(-.25rem);
  box-shadow: 0 12px 20px rgba(0, 0, 0, .15)
}

.casino-content,
.casino-logo-area {
  display: flex;
  flex-direction: column
}

.casino-logo-area {
  margin-bottom: 1.5rem;
  align-items: center
}

.casino-logo-container {
  margin-bottom: .75rem;
  border-radius: .5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  height: 100px;
  width: 200px
}

.casino-logo {
  max-height: 100%;
  max-width: 100%
}

.casino-rating {
  margin-top: .5rem;
  display: flex;
  align-items: center
}

.stars {
  color: var(--accent-gold);
  margin-right: .5rem
}

.rating-text {
  font-weight: 700;
  color: var(--text-white)
}

.casino-benefits {
  margin-bottom: 1.5rem
}

.casino-name {
  margin-bottom: .75rem;
  color: var(--accent-gold);
  font-size: 1.25rem
}

.benefits-list {
  list-style: none
}

.benefits-list li {
  margin-bottom: .5rem;
  display: flex;
  align-items: flex-start
}

.benefits-list i {
  margin-top: .25rem;
  color: var(--accent-green);
  margin-right: .5rem
}

.casino-cta {
  display: flex;
  align-items: center;
  flex-direction: column
}

.bonus-amount {
  margin-bottom: 1rem;
  text-align: center
}

.amount-text {
  font-weight: 700;
  color: var(--accent-red);
  font-size: 1.5rem
}

.bonus-text {
  color: var(--text-gray);
  font-size: .875rem
}

.get-bonus-button {
  font-weight: 700;
  border-radius: 9999px;
  text-align: center;
  color: var(--text-white);
  padding: .75rem 2rem;
  transition: all .3s ease;
  background-color: var(--accent-red);
  width: 100%
}

.get-bonus-button:hover {
  transform: scale(1.05);
  background-color: #d84343
}

.terms-text {
  margin-top: .5rem;
  color: var(--text-dark-gray);
  font-size: .75rem
}


/* About */
.about-section {
  padding: 4rem 0;
  background-color: var(--primary-light)
}

.about-content {
  margin: 0 auto;
  text-align: center;
  max-width: 800px
}

.about-text {
  margin-top: 1.5rem;
  text-align: left
}

.about-text p {
  margin-bottom: 1rem
}

/* FAQ */
.faq-section {
  padding: 4rem 0;
  background-color: var(--primary)
}

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

.faq-item {
  margin-bottom: 1rem;
  border-radius: .5rem;
  border: 1px solid var(--border-color);
  overflow: hidden
}

.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
  padding: 1rem;
  background-color: var(--primary-dark)
}

.faq-question h3 {
  font-weight: 600;
  font-size: 1.125rem
}

.faq-question i {
  color: var(--accent-gold);
  transition: transform .2s
}

.faq-answer {
  display: none;
  padding: 1rem;
  background-color: var(--primary-light)
}

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

.faq-item.active .faq-question i {
  transform: rotate(45deg)
}

/* Responsible Gambling */
.responsible-section {
  padding: 4rem 0;
  background-color: var(--primary-dark)
}

.responsible-content {
  margin: 0 auto;
  max-width: 1000px
}

.responsible-header {
  margin-bottom: 2.5rem;
  text-align: center
}

.age-badge-large {
  margin-bottom: 1rem;
  border-radius: 9999px;
  display: inline-block;
  padding: .75rem;
  background-color: #fff
}

.age-badge-large span {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.5rem
}

.responsible-list,
.responsible-text p {
  margin-bottom: 1.5rem
}

.responsible-list {
  list-style-type: disc;
  padding-left: 1.25rem
}

.responsible-list li {
  margin-bottom: .75rem
}

.help-text {
  font-weight: 600
}

.support-orgs {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr
}

.support-card {
  border-radius: .5rem;
  display: flex;
  text-align: center;
  align-items: center;
  padding: 1rem;
  transition: background-color .3s ease;
  background-color: hsla(0, 0%, 100%, .12);
  flex-direction: column
}

.support-card:hover {
  background-color: hsla(0, 0%, 100%, .18)
}

.org-name {
  margin-bottom: .75rem;
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 1.125rem
}

.org-desc {
  color: var(--text-white);
  font-size: .875rem
}

.commission {
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  padding-top: 2rem
}

.commission a {
  color: var(--text-white)
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 2.5rem 0;
  background-color: var(--primary-dark)
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr
}

.footer-title {
  font-family: Poppins, sans-serif;
  margin-bottom: 1rem;
  color: var(--accent-gold);
  font-size: 1.25rem
}

.footer-text {
  margin-bottom: 1rem;
  color: var(--text-dark-gray);
  font-size: .875rem
}

.footer-age {
  margin-top: 1rem
}

.footer-age,
.footer-age-badge {
  display: flex;
  align-items: center
}

.footer-age-badge {
  font-weight: 700;
  border-radius: .25rem;
  border: 2px solid var(--text-white);
  justify-content: center;
  color: var(--text-white);
  padding: .25rem .5rem;
  font-size: 1.125rem;
  margin-right: .5rem
}

.footer-age-text {
  color: var(--text-dark-gray);
  font-size: .875rem
}

.footer-menu {
  list-style: none
}

.footer-menu li {
  margin-bottom: .5rem
}

.footer-menu a {
  color: var(--text-dark-gray);
  transition: color .2s
}

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

.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-dark-gray);
  padding-top: 1.5rem;
  font-size: .875rem
}

/* Media Queries */
@media (min-width:768px) {
  .desktop-nav {
    display: flex
  }

  .mobile-menu-button {
    display: none
  }

  .hero-title {
    font-size: 3.75rem
  }

  .hero-description {
    font-size: 1.25rem
  }

  .casino-content {
    align-items: center;
    flex-direction: row
  }

  .casino-logo-area {
    margin-bottom: 0;
    width: 25%
  }

  .casino-benefits {
    margin-bottom: 0;
    padding: 0 1.5rem;
    width: 50%
  }

  .casino-cta {
    width: 25%
  }

  .get-bonus-button {
    width: auto
  }

  .support-orgs {
    grid-template-columns: repeat(3, 1fr)
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .section-title {
    font-size: 2.5rem
  }
}

@media (min-width:1024px) {
  .hero-title {
    font-size: 4.5rem
  }
}