:root {
  --primary-navy: #0a2540;
  --secondary-blue: #1e5a8e;
  --accent-gold: #d4af37;
  --white: #fff;
  --cream: #f8f6f0;
  --text-dark: #1a1a1a;
  --text-light: #6b7280;
}

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

body {
  font-family: Montserrat, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
}

body.login-page {
  background: linear-gradient(
    135deg,
    var(--primary-navy) 0%,
    var(--secondary-blue) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.login-container {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  max-width: 450px;
  width: 100%;
  animation: fadeInUp 0.6s ease-out;
}

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

.login-header {
  background: linear-gradient(
    135deg,
    var(--primary-navy),
    var(--secondary-blue)
  );
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.login-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

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

.logo-icon {
  font-size: 3.5rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: inline-block;
}

.login-header h1 {
  font-family: Cinzel, serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.login-header p {
  font-size: 0.95rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.login-body {
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: Montserrat, sans-serif;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-blue);
  box-shadow: 0 0 0 3px rgba(30, 90, 142, 0.1);
}

.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1.1rem;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.remember-me input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.remember-me label {
  margin: 0;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.forgot-password {
  color: var(--secondary-blue);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.forgot-password:hover {
  color: var(--accent-gold);
}

.btn-login {
  width: 100%;
  padding: 1rem;
  background: var(--accent-gold);
  color: var(--primary-navy);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: Montserrat, sans-serif;
}

.btn-login:hover {
  background: var(--secondary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.divider {
  text-align: center;
  margin: 2rem 0;
  position: relative;
}

.divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #e5e7eb;
}

.divider span {
  background: var(--white);
  padding: 0 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.register-link,
.login-link {
  text-align: center;
  color: var(--text-dark);
}

.register-link a,
.login-link a {
  color: var(--secondary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.register-link a:hover,
.login-link a:hover {
  color: var(--accent-gold);
}

.back-home {
  text-align: center;
  margin-top: 1.5rem;
}

.back-home a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.back-home a:hover {
  color: var(--secondary-blue);
}

body.register-page {
  background: linear-gradient(
    135deg,
    var(--primary-navy) 0%,
    var(--secondary-blue) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.register-container {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  max-width: 500px;
  width: 100%;
  animation: fadeInUp 0.6s ease-out;
  margin: 2rem 0;
}

.register-header {
  background: linear-gradient(
    135deg,
    var(--primary-navy),
    var(--secondary-blue)
  );
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
}

.register-header h1 {
  font-family: Cinzel, serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 900;
}

.register-header p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.register-body {
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label .required {
  color: #dc2626;
}

.age-verification {
  background: #fef3c7;
  border: 2px solid var(--accent-gold);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.age-verification p {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.age-verification label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.age-verification input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.terms-group {
  margin-bottom: 1.5rem;
}

.terms-group label {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.6;
}

.terms-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  flex-shrink: 0;
  cursor: pointer;
}

.terms-group a {
  color: var(--secondary-blue);
  text-decoration: none;
}

.terms-group a:hover {
  color: var(--accent-gold);
}

.btn-register {
  width: 100%;
  padding: 1rem;
  background: var(--accent-gold);
  color: var(--primary-navy);
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: Montserrat, sans-serif;
}

.btn-register:hover:not(:disabled) {
  background: var(--secondary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-register:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.navbar {
  background: rgba(10, 37, 64, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--accent-gold);
}

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

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}

.logo-icon {
  font-size: 2rem;
  color: var(--accent-gold);
}

.logo-text {
  font-family: Cinzel, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

.content {
  margin-top: 100px;
  padding: 4rem 0;
}

.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-navy),
    var(--secondary-blue)
  );
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 4rem;
}

.page-header h1 {
  font-family: Cinzel, serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.content-wrapper {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.content-wrapper h2 {
  font-family: Cinzel, serif;
  color: var(--secondary-blue);
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper h3 {
  font-family: Cinzel, serif;
  color: var(--primary-navy);
  font-size: 1.3rem;
  margin: 1.5rem 0 0.75rem;
}

.content-wrapper p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.content-wrapper ul {
  margin: 1rem 0 1.5rem 2rem;
  line-height: 1.8;
}

.content-wrapper li {
  margin-bottom: 0.75rem;
}

.highlight-box,
.help-box {
  background: var(--cream);
  border-left: 4px solid var(--accent-gold);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.update-date {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 2rem;
}

.mpc-footer {
  background: #1e3a52;
  color: #fff;
  padding: 2rem 0;
  margin-top: 3rem;
}

.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.border-slate {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.container-xxl {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.gy-2 > * {
  padding: 0 1rem;
}

.col-md-12,
.col-md-6,
.col-12 {
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
}

.navbar-brand {
  text-decoration: none;
  color: #fff;
}

.d-flex {
  display: flex;
}

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

.gap-2 {
  gap: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-md-0 {
  margin-bottom: 0;
}

.fw-semibold {
  font-weight: 600;
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
}

.mpc-footer p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.mpc-footer a {
  color: #4299e1;
  text-decoration: none;
  font-weight: bold;
}

.mpc-footer a:hover {
  color: #60a5fa;
}

.nav-pages {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.label-nav {
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #4299e1;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-pages a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.nav-pages a:hover {
  color: #4299e1;
}

.logo-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.age18 {
  width: 60px;
  height: 60px;
  background: #f97316;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
}

.logo-trust img {
  height: 50px;
}

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

.border-secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.pt-3 {
  padding-top: 1rem;
}

.small {
  font-size: 0.9rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-0 {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
  .content-wrapper {
    padding: 2rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

.hero {
  margin-top: 85px;
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.7)),
    url("../img/lotto-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  color: var(--white);
}

.hero::before {
  display: none;
}

@keyframes float-leaves {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-800px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  animation: fade-in-up 1s ease-out;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.hero-content h1 {
  color: var(--white) !important;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.hero-content h1 .highlight {
  color: var(--accent-gold);
  position: relative;
  display: inline-block;
}
.hero-content .subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 400;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--primary-navy);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: var(--secondary-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(30, 90, 142, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid var(--white);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-navy);
}

.hero-features {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
}

.hero-feature i {
  color: var(--accent-gold);
  font-size: 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 900;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about {
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h3 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

.about-image {
  position: relative;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary-navy),
    var(--secondary-blue)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.2);
}

.about-image i {
  font-size: 12rem;
  color: rgba(212, 175, 55, 0.3);
}

.features {
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-gold), var(--secondary-blue));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.feature-card p {
  line-height: 1.7;
  color: var(--text-light);
}

.games {
  background: var(--white);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.game-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  border: 3px solid transparent;
}

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

.game-header {
  background: linear-gradient(
    135deg,
    var(--primary-navy),
    var(--secondary-blue)
  );
  padding: 2.5rem 2rem;
  color: var(--white);
  text-align: center;
  position: relative;
}

.game-header::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--secondary-blue);
}

.game-header h3 {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.game-header .jackpot {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-gold);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.game-body {
  padding: 3rem 2rem 2rem;
}

.game-body p {
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.game-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.game-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
}

.game-feature i {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.how-to {
  background: linear-gradient(
    135deg,
    var(--primary-navy) 0%,
    var(--secondary-blue) 100%
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.how-to::before {
  content: "🏆";
  position: absolute;
  font-size: 30rem;
  opacity: 0.05;
  top: -5rem;
  right: -5rem;
  animation: rotate 40s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.how-to .section-title,
.how-to .section-subtitle {
  color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.step-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.step-number {
  width: 90px;
  height: 90px;
  background: var(--white);
  color: var(--primary-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0 auto 1.5rem;
  font-family: "Cinzel", serif;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.step-card p {
  line-height: 1.7;
  opacity: 0.95;
}

.responsible {
  background: var(--cream);
}

.responsible-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 4rem;
  border-radius: 20px;
  border-left: 6px solid var(--accent-gold);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.responsible-content h3 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.responsible-content p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.responsible-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 12px;
  transition: all 0.3s;
}

.tool-item:hover {
  background: rgba(212, 175, 55, 0.1);
}

.tool-item i {
  font-size: 1.8rem;
  color: var(--accent-gold);
}

.age-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.age-modal.active {
  display: flex;
}

.age-modal-content {
  background: var(--white);
  padding: 3.5rem;
  border-radius: 20px;
  max-width: 500px;
  text-align: center;
  border-top: 6px solid var(--accent-gold);
  animation: modal-appear 0.4s ease-out;
}

@keyframes modal-appear {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.age-modal-content i {
  font-size: 5rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.age-modal-content h2 {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 900;
}

.age-modal-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-btn {
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.age-btn-yes {
  background: var(--accent-gold);
  color: var(--primary-navy);
}

.age-btn-yes:hover {
  background: var(--secondary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 90, 142, 0.3);
}

.age-btn-no {
  background: var(--text-light);
  color: var(--white);
}

.age-btn-no:hover {
  background: #dc2626;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  color: var(--text-dark);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
  border-top: 3px solid var(--accent-gold);
}

.cookie-banner.active {
  display: block;
}

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

.cookie-content p {
  flex: 1;
  margin: 0;
  line-height: 1.6;
}

.cookie-content a {
  color: var(--secondary-blue);
  text-decoration: none;
  font-weight: 700;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.cookie-btn-accept {
  background: var(--accent-gold);
  color: var(--primary-navy);
}

.cookie-btn-accept:hover {
  background: var(--secondary-blue);
  color: var(--white);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--secondary-blue);
  border: 2px solid var(--secondary-blue);
}

.cookie-btn-decline:hover {
  background: var(--secondary-blue);
  color: var(--white);
}

.index-navbar {
  background: rgba(10, 37, 64, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.2rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 3px solid var(--accent-gold);
}

.index-navbar .nav-links a {
  color: var(--white);
}

.index-navbar .btn-nav {
  background: var(--accent-gold);
  color: var(--primary-navy);
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.index-navbar .btn-nav:hover {
  background: var(--secondary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(30, 90, 142, 0.4);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .about-content,
  .games-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
  }
}
