:root {
  --primary: #046c4e;
  --primary-dark: #023d30;
  --secondary: #d4af37;
  --gradient-hero: linear-gradient(135deg, #046c4e, #0b3f2e);
  --gradient-btn: linear-gradient(to right, #d4af37, #ffd700);
  --footer-bg: #0b3f2e;
  --footer-text: #e6e6e6;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f1f4f8;
  color: #222;
}

header.navbar {
  background-color: #046c4e;
  padding: 10px 20px;
}
.navbar-brand {
  color: #fff;
  font-weight: 700;
}
.navbar-nav .nav-link {
  color: #fff;
  margin-right: 20px;
}
.navbar-nav .nav-link:hover {
  color: var(--secondary);
}

.text-sections {
  background: linear-gradient(180deg, #f8f9fa, #ffffff);
  padding: 80px 20px;
  border-radius: 40px 40px 0 0;
  position: relative;
  z-index: 1;
}

.text-block {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  margin-bottom: 40px;
  transition: 0.3s;
}

.text-block:hover {
  transform: translateY(-6px);
}

.text-block h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
}

.text-block h2::before {
  content: "🎲";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 1.2rem;
}

.text-block .content {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.text-block ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.text-block ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  font-weight: 500;
}

.text-block ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  color: var(--secondary);
}

.age-warning,
.help-info {
  background: #fff9e6;
  border-left: 5px solid var(--secondary);
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 500;
  margin-top: 25px;
}


.hero {
  background: var(--gradient-hero);
  color: #fff;
  text-align: center;
  padding: 100px 20px 80px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
}
.hero-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 20px auto 0;
  color: #e0f0ea;
}

.feature-box {
  background: #fff;
  border: 1px solid #cde0d9;
  border-radius: 15px;
  text-align: center;
  padding: 30px;
  transition: 0.3s;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.03);
}
.feature-box i {
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 10px;
}
.feature-box:hover {
  transform: translateY(-4px);
}

.listing-item {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary);
  margin-bottom: 30px;
}
.bonus-amount {
  font-size: 1.3rem;
  color: var(--secondary);
  font-weight: 600;
}
.score {
  font-size: 1.4rem;
  color: var(--secondary);
}
.btn-register {
  background: var(--gradient-btn);
  border: none;
  color: #000;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.btn-register:hover {
  filter: brightness(1.1);
}

.age-modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 18, 18, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
}

.age-modal-content {
  background: #ffffff;
  border-radius: 16px;
  max-width: 500px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  font-family: 'Poppins', sans-serif;
}

.age-modal-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.age-modal-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #046c4e;
}

.age-modal-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

.age-modal-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.age-btn {
  padding: 10px 25px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  border: none;
  transition: 0.3s ease-in-out;
}

.age-btn-enter {
  background: linear-gradient(to right, #28c76f, #218c74);
  color: #fff;
}

.age-btn-leave {
  background: #e74c3c;
  color: #fff;
}


.content-boxes {
  padding: 60px 20px;
  background: #fff;
}
.content-box {
  border-radius: 12px;
  background: #fdfdfd;
  padding: 30px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.content-box:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}
.content-box h4 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 70px 20px 40px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.footer h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--secondary);
}
.footer p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}
.footer a {
  color: var(--secondary);
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}

.partner-logos img {
  height: 40px;
  margin: 10px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.partner-logos img:hover {
  opacity: 1;
}

.footer-links ul {
  padding: 0;
  list-style: none;
  margin-top: 30px;
  text-align: center;
}
.footer-links li {
  display: inline-block;
  margin: 0 12px;
}
.footer-links a {
  font-size: 0.9rem;
  color: #ddd;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--secondary);
  color: #000;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }
  .bonus-amount {
    font-size: 1.1rem;
  }
  .footer h3 {
    font-size: 1.3rem;
  }
  .footer p {
    font-size: 0.9rem;
  }
}
