:root {
  --primary-green: #2d5016;
  --primary-gold: #ffd700;
  --white: #ffffff;
  --dark-green: #1a3009;
  --light-green: #3d6b21;
  --gold-hover: #ffc700;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --background: #f5f5f5;
  --border: #e0e0e0;
  --shadow: rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--background);
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
img {
  max-width: 100%;
  height: auto;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--text-light);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: var(--text-dark);
}
.section-title {
  font-size: 42px;
  color: var(--primary-green);
  margin-bottom: 15px;
  text-align: center;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 50px;
  text-align: center;
}

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
#ageModal:not(.visible) {
  display: none;
}
.age-modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}
.maple-leaf-icon {
  font-size: 60px;
  color: #c41e3a;
  margin-bottom: 20px;
}
.age-modal-content h2 {
  font-size: 28px;
  color: var(--primary-green);
  margin-bottom: 15px;
}
.age-modal-content p {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--text-light);
}
.age-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: center;
}

.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-green);
}
.leaf-icon {
  font-size: 30px;
  color: #c41e3a;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-green);
  cursor: pointer;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}
.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-green);
}
.btn-login {
  color: var(--primary-green) !important;
  border: 2px solid var(--primary-green);
  padding: 8px 20px;
  border-radius: 25px;
}
.btn-register {
  background: var(--primary-green);
  color: var(--white) !important;
  padding: 10px 25px;
  border-radius: 25px;
}
.btn-register:hover {
  background: var(--dark-green);
}

.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--dark-green) 100%
  );
  overflow: hidden;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/favicon.png") repeat;
  opacity: 0.1;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: 100%;
}
.hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
  opacity: 0.95;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-gold);
  color: var(--text-dark) !important;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}
.btn-hero:hover {
  background: var(--gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}
.trust-badges {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--white);
  font-size: 18px;
  opacity: 0.9;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge i {
  color: var(--primary-gold);
}

.games-section {
  padding: 80px 0;
  background: var(--white);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.game-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.game-card.featured {
  border: 3px solid var(--primary-gold);
}
.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-gold);
  color: var(--text-dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
}
.game-card-header {
  padding: 30px;
  color: var(--white);
  text-align: center;
  position: relative;
}
.lotto-649 .game-card-header {
  background: linear-gradient(135deg, #c41e3a, #8b0000);
}
.lotto-max .game-card-header {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}
.daily-grand .game-card-header {
  background: linear-gradient(135deg, #4a90e2, #357abd);
}

.game-card-header h3 {
  font-size: 28px;
  font-weight: 700;
}
.game-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  margin-top: 10px;
  font-weight: 600;
}
.game-jackpot {
  padding: 30px;
  text-align: center;
}
.jackpot-label {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.jackpot-amount {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-green);
}
.game-description {
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-light);
  padding: 0 30px;
}
.game-features {
  list-style: none;
  padding: 0 30px 20px;
  flex-grow: 1;
}
.game-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.game-features i {
  color: var(--primary-green);
}
.btn-game {
  display: block;
  width: 100%;
  background: var(--primary-green);
  color: var(--white) !important;
  padding: 15px;
  border-radius: 0 0 20px 20px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}
.btn-game:hover {
  background: var(--dark-green);
}

.winning-numbers {
  padding: 80px 0;
  background: var(--background);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.number-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  text-align: center;
}
.number-card h3 {
  font-size: 22px;
  color: var(--primary-green);
  margin-bottom: 5px;
}
.draw-date {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}
.numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}
.number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 3px 10px var(--shadow);
}
.bonus {
  font-weight: 500;
  color: var(--text-dark);
}
.number.small {
  width: 40px;
  height: 40px;
  font-size: 16px;
  background: linear-gradient(135deg, var(--primary-gold), #ffa500);
  color: var(--text-dark);
}

.security-section {
  padding: 80px 0;
  background: var(--white);
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.security-card {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background: var(--background);
  transition: all 0.3s ease;
}
.security-card:hover {
  background: var(--white);
  box-shadow: 0 5px 20px var(--shadow);
  transform: translateY(-5px);
}
.security-card i {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
}
.security-card h3 {
  font-size: 22px;
  color: var(--primary-green);
  margin-bottom: 10px;
}
.security-card p {
  color: var(--text-light);
}

.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
}
.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.newsletter-text {
  flex: 1;
}
.newsletter-text h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.newsletter-form {
  flex: 1;
  display: flex;
  gap: 15px;
}
.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
}
.newsletter-form .btn-primary {
  background: var(--primary-gold);
  color: var(--text-dark);
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.newsletter-form .btn-primary:hover {
  background: var(--gold-hover);
  transform: none;
}

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--primary-gold);
  margin-bottom: 15px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col .leaf-icon {
  font-size: 24px;
  color: #c41e3a;
}
.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: var(--primary-gold);
  color: var(--text-dark);
  transform: translateY(-3px);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: var(--primary-gold);
}
.footer-col ul li i {
  color: var(--primary-gold);
  margin-top: 3px;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}
.disclaimer {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}

@media (max-width: 992px) {
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 65px;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 20px var(--shadow);
    padding: 20px 0;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu li:last-child {
    border-bottom: none;
  }
  .nav-menu a {
    display: block;
    padding: 10px 20px;
  }
  .btn-login,
  .btn-register {
    margin: 10px auto;
    width: 80%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 500px;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .btn-hero {
    padding: 15px 30px;
    font-size: 18px;
  }
  .trust-badges {
    flex-direction: column;
    gap: 10px;
  }
  .section-title {
    font-size: 32px;
  }
  .section-subtitle {
    margin-bottom: 30px;
  }
  .games-grid,
  .numbers-grid,
  .security-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-content {
    flex-direction: column;
  }
  .newsletter-text {
    text-align: center;
  }
  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  .newsletter-form input {
    width: 100%;
  }
}
.age-modal.hidden {
  display: none !important;
}

.footer-imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-imgs img {
  padding: 12px;
  margin: 12px;
  height: 55px;
  background: white;
  border-radius: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--background);
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
img {
  max-width: 100%;
  height: auto;
}

.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.age-gate.hidden {
  display: none;
}
.age-gate-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}
.age-gate-icon {
  font-size: 60px;
  color: var(--primary-green);
  margin-bottom: 20px;
}
.age-gate-content h2 {
  font-size: 28px;
  color: var(--primary-green);
  margin-bottom: 15px;
}
.age-gate-content p {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--text-light);
}
.age-gate-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: center;
}

.header {
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  padding: 15px 0;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-green);
}
.logo i {
  font-size: 30px;
  color: var(--primary-gold);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-green);
  cursor: pointer;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}
.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-green);
}
.btn-login {
  color: var(--primary-green) !important;
  border: 2px solid var(--primary-green);
  padding: 8px 20px;
  border-radius: 25px;
}
.btn-register {
  background: var(--primary-green);
  color: var(--white) !important;
  padding: 10px 25px;
  border-radius: 25px;
}
.btn-register:hover {
  background: var(--dark-green);
}

.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--dark-green) 100%
  );
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-text {
  text-align: center;
  color: var(--white);
}
.hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
  opacity: 0.95;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-gold);
  color: var(--text-dark);
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}
.btn-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}
.hero-domain {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
}

.games-showcase {
  padding: 80px 0;
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: 42px;
  color: var(--primary-green);
  margin-bottom: 15px;
}
.section-header p {
  font-size: 18px;
  color: var(--text-light);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.game-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}
.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.game-card.featured {
  border: 3px solid var(--primary-gold);
}
.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-gold);
  color: var(--text-dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
}
.game-card-header {
  padding: 30px;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  text-align: center;
}
.game-card-header.lotto649 {
  background: linear-gradient(135deg, #c41e3a, #8b0000);
}
.game-card-header.lottomax {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}
.game-card-header.dailygrand {
  background: linear-gradient(135deg, #4a90e2, #357abd);
}
.game-card-header i {
  font-size: 40px;
  margin-bottom: 10px;
}
.game-card-header h3 {
  font-size: 28px;
  font-weight: 700;
}
.game-card-body {
  padding: 30px;
}
.jackpot-amount {
  text-align: center;
  margin-bottom: 20px;
}
.jackpot-amount .amount {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 5px;
}
.jackpot-amount .label {
  font-size: 14px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.game-description {
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-light);
}
.game-details {
  display: flex;
  justify-content: space-around;
  margin-bottom: 25px;
  padding: 15px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
}
.detail-item i {
  color: var(--primary-green);
}
.btn-game {
  display: block;
  width: 100%;
  background: var(--primary-green);
  color: var(--white);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-game:hover {
  background: var(--dark-green);
  transform: scale(1.02);
}

.winning-numbers {
  padding: 80px 0;
  background: var(--background);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.numbers-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
}
.numbers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border);
}
.numbers-header h3 {
  font-size: 22px;
  color: var(--primary-green);
}
.draw-date {
  font-size: 14px;
  color: var(--text-light);
}
.numbers-display {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.number-ball {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 3px 10px var(--shadow);
}
.bonus-ball {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
}
.bonus-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
}
.number-ball.bonus {
  background: linear-gradient(135deg, var(--primary-gold), #ffa500);
  color: var(--text-dark);
}

.security-features {
  padding: 80px 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background: var(--background);
  transition: all 0.3s ease;
}
.feature-card:hover {
  background: var(--white);
  box-shadow: 0 5px 20px var(--shadow);
  transform: translateY(-5px);
}
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 36px;
}
.feature-card h3 {
  font-size: 22px;
  color: var(--primary-green);
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-light);
}

.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
}
.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.newsletter-text {
  flex: 1;
}
.newsletter-text i {
  font-size: 48px;
  color: var(--primary-gold);
  margin-bottom: 15px;
}
.newsletter-text h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.newsletter-form {
  flex: 1;
  display: flex;
  gap: 15px;
}
.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
}
.btn-subscribe {
  background: var(--primary-gold);
  color: var(--text-dark);
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-subscribe:hover {
  background: var(--gold-hover);
  transform: scale(1.05);
}

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 50px 0 20px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
.footer-logo i {
  font-size: 30px;
  color: var(--primary-gold);
}
.footer-domain {
  color: var(--primary-gold);
  font-weight: 600;
  margin-top: 10px;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: var(--primary-gold);
  color: var(--text-dark);
  transform: translateY(-3px);
}
.footer-section h4 {
  color: var(--primary-gold);
  margin-bottom: 15px;
  font-size: 18px;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 10px;
}
.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}
.footer-section ul li a:hover {
  color: var(--primary-gold);
}
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}
.contact-info i {
  color: var(--primary-gold);
  margin-top: 3px;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer-badges .badge {
  background: var(--primary-green);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}
.disclaimer {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--text-light);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: var(--text-dark);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.page-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
}
.page-header p {
  font-size: 20px;
  opacity: 0.9;
}
.domain-display {
  color: var(--primary-gold);
  font-weight: 600;
  margin-top: 10px;
}

.about-section {
  padding: 80px 0;
  background: var(--white);
}
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-text h2 {
  font-size: 36px;
  color: var(--primary-green);
  margin-bottom: 20px;
}
.about-text p {
  margin-bottom: 15px;
  color: var(--text-light);
  line-height: 1.8;
}
.about-image {
  text-align: center;
}
.maple-icon {
  font-size: 150px;
  color: var(--primary-gold);
  opacity: 0.3;
}

.values-section {
  padding: 80px 0;
  background: var(--background);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.value-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
}
.value-card i {
  font-size: 48px;
  color: var(--primary-green);
  margin-bottom: 15px;
}
.value-card h3 {
  font-size: 22px;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.responsible-gaming-section {
  padding: 80px 0;
  background: var(--white);
}
.rg-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}
.rg-text h3 {
  font-size: 28px;
  color: var(--primary-green);
  margin: 20px 0 15px;
}
.rg-text h4 {
  font-size: 20px;
  color: var(--text-dark);
  margin: 15px 0 10px;
}
.rg-list {
  list-style: none;
  margin: 15px 0;
}
.rg-list li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.rg-list i {
  color: var(--primary-green);
  margin-top: 3px;
}
.help-resources {
  background: var(--background);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}
.help-resources p {
  margin: 8px 0;
}
.rg-image {
  text-align: center;
}
.rg-image i {
  font-size: 150px;
  color: var(--primary-gold);
  opacity: 0.3;
}

.community-section {
  padding: 80px 0;
  background: var(--background);
}
.section-intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}
.community-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.stat-card {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
}
.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 10px;
}
.stat-label {
  font-size: 16px;
  color: var(--text-light);
}
.community-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.area-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
}
.area-card i {
  font-size: 48px;
  color: var(--primary-gold);
  margin-bottom: 15px;
}
.area-card h3 {
  font-size: 22px;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.compliance-section {
  padding: 80px 0;
  background: var(--white);
}
.compliance-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.compliance-list {
  list-style: none;
  margin: 15px 0;
}
.compliance-list li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.compliance-list i {
  color: var(--primary-green);
  margin-top: 3px;
}
.compliance-badges {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.badge-item {
  background: var(--background);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}
.badge-item i {
  font-size: 60px;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.privacy-highlights {
  padding: 80px 0;
  background: var(--background);
}
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.privacy-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
}
.privacy-card i {
  font-size: 48px;
  color: var(--primary-green);
  margin-bottom: 15px;
}
.privacy-cta {
  text-align: center;
  padding: 40px;
}

.contact-methods {
  padding: 80px 0;
  background: var(--white);
}
.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.method-card {
  background: var(--background);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}
.method-card:hover {
  background: var(--white);
  box-shadow: 0 5px 20px var(--shadow);
  transform: translateY(-5px);
}
.method-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 36px;
}
.method-card h3 {
  font-size: 24px;
  color: var(--primary-green);
  margin-bottom: 10px;
}
.method-card a {
  color: var(--primary-gold);
  font-size: 18px;
  font-weight: 600;
}
.method-hours {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 15px;
}
.live-chat-btn {
  background: var(--primary-green);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.contact-form-section {
  padding: 80px 0;
  background: var(--background);
}
.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 5px 20px var(--shadow);
}
.form-header {
  text-align: center;
  margin-bottom: 40px;
}
.form-header h2 {
  font-size: 32px;
  color: var(--primary-green);
  margin-bottom: 10px;
}
.contact-form {
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}
.form-group label i {
  color: var(--primary-green);
  margin-right: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}
.char-count {
  font-size: 14px;
  color: var(--text-light);
  float: right;
  margin-top: 5px;
}
.file-upload-wrapper {
  position: relative;
}
.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  border: 2px dashed var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.file-upload-label:hover {
  border-color: var(--primary-green);
  background: var(--background);
}
.file-upload-label i {
  font-size: 36px;
  color: var(--primary-green);
  margin-bottom: 10px;
}
.file-upload-wrapper input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.file-info {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
}
.checkbox-group {
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
}
.btn-submit {
  width: 100%;
  background: var(--primary-green);
  color: var(--white);
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
}
.btn-submit:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}

.location-section {
  padding: 80px 0;
  background: var(--white);
}
.location-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.map-placeholder {
  background: var(--background);
  padding: 60px 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
}
.map-placeholder i {
  font-size: 60px;
  color: var(--primary-green);
  margin-bottom: 20px;
}
.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-green);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 25px;
  margin-top: 20px;
}
.location-info h3 {
  font-size: 24px;
  color: var(--primary-green);
  margin-bottom: 20px;
}
.hours-list {
  margin-bottom: 30px;
}
.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.transit-list {
  list-style: none;
}
.transit-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.transit-list i {
  color: var(--primary-green);
}

.social-section {
  padding: 80px 0;
  background: var(--background);
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.social-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
}
.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px var(--shadow);
}
.social-card.facebook:hover {
  color: #1877f2;
}
.social-card.twitter:hover {
  color: #1da1f2;
}
.social-card.instagram:hover {
  color: #e4405f;
}
.social-card.youtube:hover {
  color: #ff0000;
}
.social-card i {
  font-size: 48px;
  margin-bottom: 15px;
}
.social-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.faq-quick {
  padding: 80px 0;
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.faq-card {
  background: var(--background);
  padding: 30px;
  border-radius: 15px;
}
.faq-card i {
  font-size: 36px;
  color: var(--primary-gold);
  margin-bottom: 15px;
}
.faq-card h3 {
  font-size: 20px;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.buy-header {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
}
.game-selection {
  padding: 80px 0;
  background: var(--white);
}
.game-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.game-thumb {
  background: var(--background);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: 3px solid transparent;
}
.game-thumb:hover,
.game-thumb.active {
  border-color: var(--primary-green);
  background: var(--white);
  box-shadow: 0 5px 20px var(--shadow);
}
.thumb-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 36px;
}
.thumb-price {
  font-size: 18px;
  color: var(--text-light);
  margin: 10px 0;
}
.thumb-jackpot {
  font-size: 20px;
  color: var(--primary-green);
  font-weight: 600;
}

.ticket-builder {
  padding: 80px 0;
  background: var(--background);
}
.builder-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}
.number-selection-panel,
.cart-panel {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px var(--shadow);
}
.panel-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.panel-header h3 {
  font-size: 28px;
  color: var(--primary-green);
}
.selection-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.tab-btn {
  flex: 1;
  padding: 12px;
  background: var(--background);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}
.tab-btn.active {
  background: var(--primary-green);
  color: var(--white);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.selected-numbers h4 {
  font-size: 18px;
  color: var(--primary-green);
  margin-bottom: 15px;
}
.selected-display {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
  min-height: 60px;
}
.empty-slot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--background);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}
.btn-clear {
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  float: right;
}
.number-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.number-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--background);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.number-btn:hover {
  background: var(--light-green);
  color: var(--white);
  border-color: var(--primary-green);
}
.number-btn.selected {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}
.quick-pick-content {
  text-align: center;
  padding: 40px 20px;
}
.quick-pick-content i {
  font-size: 60px;
  color: var(--primary-gold);
  margin-bottom: 20px;
}
.btn-lucky-dip {
  background: var(--primary-gold);
  color: var(--text-dark);
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
}
.lucky-dip-results {
  margin-top: 30px;
}
.subscription-options {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid var(--border);
}
.option-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}
.option-label {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--background);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.option-label:hover {
  background: var(--white);
  box-shadow: 0 3px 10px var(--shadow);
}
.option-content {
  display: flex;
  flex-direction: column;
}
.option-desc {
  font-size: 14px;
  color: var(--text-light);
}
.btn-add-ticket {
  width: 100%;
  background: var(--primary-green);
  color: var(--white);
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cart-items {
  min-height: 200px;
  margin-bottom: 30px;
}
.empty-cart {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
}
.empty-cart i {
  font-size: 60px;
  margin-bottom: 15px;
  opacity: 0.5;
}
.cart-summary {
  padding: 20px 0;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  margin-bottom: 20px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.summary-row.total {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 15px;
}
.btn-checkout {
  width: 100%;
  background: var(--primary-green);
  color: var(--white);
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-checkout:disabled {
  background: var(--text-light);
  cursor: not-allowed;
}
.security-badges {
  text-align: center;
  margin: 20px 0;
  color: var(--text-light);
}
.security-badges i {
  color: var(--primary-green);
  margin-right: 8px;
}
.payment-methods {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.payment-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}
.payment-icons i {
  font-size: 32px;
  color: var(--text-light);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.modal.active {
  display: flex;
}
.modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-light);
  cursor: pointer;
}
.payment-modal h2 {
  font-size: 28px;
  color: var(--primary-green);
  margin-bottom: 30px;
  text-align: center;
}
.order-summary {
  background: var(--background);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.order-total {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid var(--border);
}
.payment-form h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.btn-pay {
  width: 100%;
  background: var(--primary-green);
  color: var(--white);
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.payment-security {
  text-align: center;
  margin-top: 20px;
  color: var(--text-light);
}
.payment-security i {
  color: var(--primary-green);
  margin-right: 8px;
}

.confirmation-modal {
  text-align: center;
}
.confirmation-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirmation-icon i {
  font-size: 60px;
  color: var(--white);
}
.confirmation-modal h2 {
  font-size: 32px;
  color: var(--primary-green);
  margin-bottom: 15px;
}
.confirmation-details {
  background: var(--background);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
}
.confirmation-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-gold);
  margin: 15px 0;
}
.confirmation-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.ticket-info {
  padding: 80px 0;
  background: var(--white);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.info-card {
  text-align: center;
  padding: 30px;
}
.info-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
}

.pricing-info {
  padding: 80px 0;
  background: var(--background);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.pricing-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
  position: relative;
}
.pricing-card.featured {
  border: 3px solid var(--primary-gold);
}
.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--primary-gold);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
}
.pricing-card h3 {
  font-size: 28px;
  color: var(--primary-green);
  margin-bottom: 20px;
}
.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-green);
  margin: 20px 0;
}
.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-top: 30px;
}
.pricing-card ul li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-card ul li i {
  color: var(--primary-green);
  margin-top: 3px;
}
.pricing-disclaimer {
  text-align: center;
  margin-top: 40px;
  color: var(--text-light);
  font-size: 14px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
}
.auth-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}
.auth-left {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--white);
}
.auth-logo i {
  font-size: 36px;
  color: var(--primary-gold);
}
.auth-left h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.domain-text {
  color: var(--primary-gold);
  font-weight: 600;
  margin-top: 20px;
}
.auth-right {
  padding: 60px;
  display: flex;
  align-items: center;
}
.auth-form-container {
  width: 100%;
}
.auth-form-container h2 {
  font-size: 28px;
  color: var(--primary-green);
  margin-bottom: 30px;
}
.auth-form .form-group {
  margin-bottom: 20px;
}
.password-input {
  position: relative;
}
.password-input input {
  padding-right: 50px;
}
.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
}
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.forgot-link {
  color: var(--primary-green);
  font-size: 14px;
}
.btn-auth {
  width: 100%;
  background: var(--primary-green);
  color: var(--white);
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.alt-login {
  margin: 30px 0;
}
.divider {
  text-align: center;
  position: relative;
  margin: 20px 0;
}
.divider span {
  background: var(--white);
  padding: 0 15px;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}
.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.btn-biometric {
  width: 100%;
  background: var(--background);
  color: var(--text-dark);
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.auth-switch {
  text-align: center;
  margin-top: 20px;
  color: var(--text-light);
}
.auth-switch a {
  color: var(--primary-green);
  font-weight: 600;
}
.security-note {
  text-align: center;
  margin-top: 30px;
  color: var(--text-light);
  font-size: 14px;
}
.security-note i {
  color: var(--primary-green);
  margin-right: 8px;
}

.registration-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.step::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step:last-child::after {
  display: none;
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}
.step.active .step-number {
  background: var(--primary-green);
  color: var(--white);
}
.step-label {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-light);
}
.step.active .step-label {
  color: var(--primary-green);
  font-weight: 600;
}
.multi-step-form .form-step {
  display: none;
}
.multi-step-form .form-step.active {
  display: block;
}
.age-verification {
  background: var(--background);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}
.form-buttons {
  display: flex;
  gap: 15px;
}
.form-buttons button {
  flex: 1;
}
.password-strength {
  height: 4px;
  background: var(--background);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.strength-bar {
  height: 100%;
  width: 0;
  background: var(--primary-green);
  transition: width 0.3s;
}
.password-hint {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 5px;
}
.terms-acceptance {
  background: var(--background);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.legal-page {
  padding: 80px 0;
  background: var(--white);
}
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}
.legal-content h1 {
  font-size: 42px;
  color: var(--primary-green);
  margin-bottom: 20px;
}
.last-updated {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 10px;
}
.legal-content h2 {
  font-size: 28px;
  color: var(--primary-green);
  margin: 30px 0 15px;
}
.legal-content h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin: 20px 0 10px;
}
.legal-content p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--text-light);
}
.legal-content ul {
  margin: 15px 0 15px 30px;
}
.legal-content ul li {
  margin-bottom: 10px;
  line-height: 1.8;
  color: var(--text-light);
}
.contact-box {
  background: var(--background);
  padding: 25px;
  border-radius: 10px;
  margin: 20px 0;
}
.contact-box p {
  margin-bottom: 8px;
}

.rg-page .rg-intro {
  background: var(--background);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 40px;
}
.rg-page .rg-intro i {
  font-size: 60px;
  color: var(--primary-green);
  margin-bottom: 20px;
}
.help-resources-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
.help-card {
  background: var(--background);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}
.help-card h3 {
  font-size: 20px;
  color: var(--primary-green);
  margin-bottom: 15px;
}
.help-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-gold);
  margin: 10px 0;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .section-header h2 {
    font-size: 32px;
  }
  .games-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-content {
    flex-direction: column;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .builder-wrapper {
    grid-template-columns: 1fr;
  }
  .auth-container {
    grid-template-columns: 1fr;
  }
  .auth-left {
    display: none;
  }
  .about-content,
  .rg-content,
  .compliance-content,
  .location-content {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
