:root {
  --primary-color: #dc2626;
  --secondary-color: #ea580c;
  --accent-color: #f59e0b;
  --dark-color: #78350f;
  --light-bg: #fef3c7;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
  color: #292524;
  background: #fffbeb;
}
.age-modal {
  display: flex;
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: rgba(120, 53, 15, 0.95);
  justify-content: center;
  align-items: center;
}
.age-modal-content {
  background: #fff;
  padding: 4rem;
  border-radius: 30px;
  text-align: center;
  max-width: 500px;
  border: 5px solid var(--accent-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.age-modal-content i {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  display: block;
}
.age-modal-content h2 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 2.5rem;
}
.age-modal-content p {
  color: #78716c;
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
  font-family: "Segoe UI", sans-serif;
}
.age-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.age-btn {
  padding: 1.3rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Segoe UI", sans-serif;
}
.age-btn-yes {
  background: var(--primary-color);
  color: #fff;
}
.age-btn-yes:hover {
  background: var(--dark-color);
  transform: scale(1.05);
}
.age-btn-no {
  background: #e7e5e4;
  color: #78716c;
}
.age-btn-no:hover {
  background: #d6d3d1;
}
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  border-top: 5px solid var(--accent-color);
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
  font-family: "Segoe UI", sans-serif;
  color: #57534e;
}
.cookie-content p i {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
.cookie-buttons {
  display: flex;
  gap: 1rem;
}
.cookie-btn {
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Segoe UI", sans-serif;
}
.cookie-btn-accept {
  background: var(--primary-color);
  color: #fff;
}
.cookie-btn-accept:hover {
  background: var(--dark-color);
}
.cookie-btn-decline {
  background: #e7e5e4;
  color: #78716c;
}
.cookie-btn-decline:hover {
  background: #d6d3d1;
}
.navbar {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  border-bottom: 4px solid var(--light-bg);
}
.navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
}
.navbar-brand i {
  color: var(--accent-color);
  font-size: 2rem;
}
.nav-link {
  color: var(--dark-color);
  font-weight: 600;
  margin: 0 0.8rem;
  transition: all 0.3s;
  font-family: "Segoe UI", sans-serif;
  position: relative;
}
.nav-link:hover {
  color: var(--primary-color);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: width 0.3s;
}
.nav-link:hover::after {
  width: 100%;
}
.btn-primary-custom {
  background: var(--primary-color);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  transition: all 0.3s;
  font-family: "Segoe UI", sans-serif;
}
.btn-primary-custom:hover {
  background: var(--dark-color);
  transform: translateY(-2px);
}
.hero {
  background: url(../img/hero-bg.png);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 10rem 0 8rem;
  position: relative;
  border-bottom: 6px solid var(--accent-color);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}
.hero p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-family: "Segoe UI", sans-serif;
}
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-hero {
  padding: 1.3rem 3rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: "Segoe UI", sans-serif;
  text-decoration: none;
}
.btn-hero-primary {
  background: #fff;
  color: var(--primary-color);
}
.btn-hero-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
  background: var(--accent-color);
  color: #fff;
}
.btn-hero-secondary {
  background: transparent;
  color: #fff;
  border: 3px solid #fff;
}
.btn-hero-secondary:hover {
  background: #fff;
  color: var(--primary-color);
}
.features {
  padding: 7rem 0;
  background: #fff;
}
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 1rem;
}
.section-title p {
  font-size: 1.3rem;
  color: #78716c;
  font-family: "Segoe UI", sans-serif;
}
.feature-card {
  background: var(--light-bg);
  padding: 3rem 2.5rem;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  height: 100%;
  border: 4px solid #fde68a;
  position: relative;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}
.feature-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 50px rgba(220, 38, 38, 0.2);
}
.feature-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: block;
}
.feature-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}
.feature-card p {
  color: #57534e;
  line-height: 1.8;
  font-family: "Segoe UI", sans-serif;
}
.how-it-works {
  padding: 7rem 0;
  background: var(--light-bg);
}
.step-card {
  text-align: center;
  padding: 2.5rem;
}
.step-number {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 2.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
  border: 6px solid var(--accent-color);
}
.step-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}
.step-card p {
  color: #78716c;
  font-family: "Segoe UI", sans-serif;
  line-height: 1.8;
}
.games {
  padding: 7rem 0;
  background: #fff;
}
.game-card {
  background: var(--light-bg);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  height: 100%;
  border: 4px solid var(--accent-color);
}
.game-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 50px rgba(220, 38, 38, 0.25);
}
.game-card-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}
.game-card-header h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.game-card-header .jackpot {
  font-size: 2.8rem;
  font-weight: 800;
}
.game-card-body {
  padding: 2.5rem;
}
.game-card-body ul {
  list-style: none;
  margin-bottom: 2rem;
}
.game-card-body ul li {
  padding: 0.8rem 0;
  color: #57534e;
  font-family: "Segoe UI", sans-serif;
}
.game-card-body ul li i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}
.btn-game {
  width: 100%;
  padding: 1.2rem;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.15rem;
  transition: all 0.3s;
  font-family: "Segoe UI", sans-serif;
  cursor: pointer;
}
.btn-game:hover {
  background: var(--dark-color);
  transform: translateY(-2px);
}
.faq {
  padding: 7rem 0;
  background: var(--light-bg);
}
.accordion-item {
  border: 4px solid #fde68a;
  margin-bottom: 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}
.accordion-button {
  background: #fff;
  color: var(--dark-color);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1.8rem 2rem;
}
.accordion-button:not(.collapsed) {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}
.accordion-body {
  padding: 2rem;
  color: #57534e;
  line-height: 1.9;
  font-family: "Segoe UI", sans-serif;
  background: #fffbeb;
}
.responsible {
  padding: 7rem 0;
  background: #fff;
}
.responsible-content {
  background: var(--light-bg);
  padding: 4rem;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 4px solid var(--accent-color);
}
.responsible-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}
.responsible-content ul {
  list-style: none;
  margin: 2rem 0;
}
.responsible-content ul li {
  padding: 1rem 0;
  color: #57534e;
  padding-left: 2.5rem;
  position: relative;
  font-family: "Segoe UI", sans-serif;
  line-height: 1.8;
}
.responsible-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.3rem;
}
.help-resources {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  padding: 3rem;
  border-radius: 20px;
  margin-top: 2.5rem;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
}
.help-resources h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.help-resources a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}
.login-page,
.register-page {
  padding: 5rem 0;
  background: var(--light-bg);
  min-height: 100vh;
}
.login-card,
.register-card {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border: 5px solid var(--accent-color);
}
.login-header,
.register-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  padding: 4rem 2.5rem;
  text-align: center;
}
.login-header i,
.register-header i {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}
.login-header h2,
.register-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.login-header p,
.register-header p {
  opacity: 0.95;
  font-family: "Segoe UI", sans-serif;
}
.login-form,
.register-form {
  padding: 3rem;
}
.form-group {
  margin-bottom: 2rem;
}
.form-group label {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
  display: block;
  font-family: "Segoe UI", sans-serif;
}
.form-group label i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}
.form-control {
  padding: 1.1rem 1.25rem;
  border: 3px solid #fde68a;
  border-radius: 15px;
  font-size: 1.05rem;
  transition: all 0.3s;
  font-family: "Segoe UI", sans-serif;
}
.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
  outline: none;
}
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.forgot-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  font-family: "Segoe UI", sans-serif;
}
.forgot-link:hover {
  text-decoration: underline;
}
.btn-login,
.btn-register {
  width: 100%;
  padding: 1.3rem;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s;
  font-family: "Segoe UI", sans-serif;
}
.btn-login:hover,
.btn-register:hover {
  background: var(--dark-color);
  transform: translateY(-2px);
}
.btn-login i,
.btn-register i {
  margin-right: 0.5rem;
}
.login-footer,
.register-footer {
  padding: 2rem 3rem;
  background: var(--light-bg);
  text-align: center;
  border-top: 4px solid #fde68a;
}
.login-footer p,
.register-footer p {
  margin: 0;
  color: #78716c;
  font-family: "Segoe UI", sans-serif;
}
.login-footer a,
.register-footer a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}
.login-footer a:hover,
.register-footer a:hover {
  text-decoration: underline;
}
.legal-page {
  padding: 5rem 0;
  background: var(--light-bg);
}
.legal-content {
  background: #fff;
  padding: 4rem;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 4px solid var(--accent-color);
}
.legal-content h1 {
  color: var(--dark-color);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.legal-content h1 i {
  color: var(--primary-color);
  margin-right: 1rem;
}
.legal-content h2 {
  color: var(--dark-color);
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
.legal-content h3 {
  color: var(--dark-color);
  font-size: 1.7rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
.legal-content p {
  color: #57534e;
  line-height: 1.9;
  margin-bottom: 1.75rem;
  font-family: "Segoe UI", sans-serif;
}
.legal-content ul,
.legal-content ol {
  color: #57534e;
  line-height: 1.9;
  margin-bottom: 1.75rem;
  padding-left: 2.5rem;
  font-family: "Segoe UI", sans-serif;
}
.legal-content li {
  margin-bottom: 0.75rem;
}
.legal-content strong {
  color: var(--dark-color);
  font-weight: 700;
}
.legal-content .last-updated {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  border-left: 6px solid var(--primary-color);
  font-family: "Segoe UI", sans-serif;
}
.legal-content table {
  border: 4px solid #fde68a;
  border-radius: 15px;
  overflow: hidden;
}
.legal-content table th {
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
}
.mpc-footer {
  background: #292524;
  color: #d6d3d1;
  padding: 3rem 0 1.5rem;
  border-top: 6px solid var(--accent-color);
}
.mpc-footer .navbar-brand {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
}
.mpc-footer p {
  color: #a8a29e;
  line-height: 1.9;
  font-family: "Segoe UI", sans-serif;
}
.mpc-footer a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s;
}
.mpc-footer a:hover {
  color: var(--secondary-color);
}
.nav-pages {
  margin-top: 2rem;
}
.nav-pages .label-nav {
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  letter-spacing: 1px;
  font-family: "Segoe UI", sans-serif;
}
.nav-pages a {
  display: block;
  padding: 0.6rem 0;
  color: #a8a29e;
  text-decoration: none;
  transition: all 0.3s;
  font-family: "Segoe UI", sans-serif;
}
.nav-pages a:hover {
  color: var(--accent-color);
  padding-left: 8px;
}
.logo-trust {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.age18 {
  background: var(--primary-color);
  color: #fff;
  padding: 0.7rem 1.3rem;
  border-radius: 15px;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}
.logo-trust img {
  height: 45px;
  transition: transform 0.3s;
}
.logo-trust img:hover {
  transform: scale(1.15);
}
.border-slate {
  border-color: #44403c !important;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
  .section-title h2 {
    font-size: 2.2rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-hero {
    width: 100%;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
  }
  .login-form,
  .register-form {
    padding: 2rem;
  }
  .legal-content {
    padding: 2rem;
  }
  .legal-content h1 {
    font-size: 2.2rem;
  }
  .legal-content h2 {
    font-size: 1.7rem;
  }
}
