@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url(../fonts/Roboto.woff2) format("woff2"), url(../fonts/Roboto.woff) format("woff");
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
:after,
:before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
  min-width: 320px;
}

body {
  color: #000;
  background-color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  font-family: "Roboto";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
textarea {
  font-family: "Roboto";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wrapper > main {
  flex: 1 1 auto;
}

[class*=__container] {
  max-width: 1400px;
  box-sizing: content-box;
  margin: 0 auto;
  padding-inline: 15px;
}

[class*=__title] {
  font-weight: 700;
  font-family: "Roboto";
  font-size: clamp(1.563rem, 0.988rem + 2.87vw, 3.5rem);
}

section {
  padding-block: clamp(1.875rem, 1.339rem + 2.381vw, 3.125rem);
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  transition: color 0.3s ease 0s;
}

.anim {
  opacity: 0;
  transition: opacity 1s ease 0s;
}
.anim.animate {
  opacity: 1;
}

body {
  margin: 0;
  background-color: #FFFFFF;
  color: #333D49;
  line-height: 1.7;
  font-size: 16px;
}

body.menu-open {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.3;
  font-weight: 700;
}

h2 {
  font-size: 2.8rem;
  color: #1c2a39;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #5a6675;
  max-width: 600px;
  margin: 0 auto 3.5rem auto;
}

a {
  color: #2D72D9;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1e5bb8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.button-primary,
.button-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-primary {
  background-color: #2D72D9;
  color: #FFFFFF;
}

.button-primary:hover {
  background-color: #1e5bb8;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(45, 114, 217, 0.2);
}

.button-secondary {
  background-color: transparent;
  color: #2D72D9;
  border: 2px solid #2D72D9;
}

.button-secondary:hover {
  background-color: #2D72D9;
  color: #FFFFFF;
}

.read-more {
  font-weight: 700;
  color: #2D72D9;
}

.read-more:hover {
  text-decoration: underline;
}

.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-bottom: 1px solid #DEE2E6;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1c2a39;
}

.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 40px;
}

.main-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: #333D49;
  padding: 5px;
}

.main-nav a:hover {
  color: #2D72D9;
}

.wishlist-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background-color: #fff0d8;
  padding: 8px 16px;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

@media (max-width: 992px) {
  .jng329nnas {
    display: none;
  }
}

.wishlist-trigger:hover {
  background-color: #ffe6bb;
}

.wishlist-icon {
  font-size: 1.2rem;
  color: #FFA726;
}

.wishlist-text {
  font-weight: 600;
}

.wishlist-counter {
  background-color: #E63946;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.burger-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  position: relative;
}

.burger-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #1c2a39;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.burger-menu-toggle span:not(:last-child) {
  margin-bottom: 6px;
}

.burger-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.burger-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  z-index: 9;
  transition: right 0.4s ease-in-out;
  padding: 100px 30px 30px 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.mobile-menu.is-active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 42, 57, 0.6);
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: 10px;
}

.mobile-nav a {
  display: block;
  padding: 15px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1c2a39;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.mobile-nav a:hover {
  background-color: #F0F4F8;
  color: #2D72D9;
}

.mobile-wishlist-trigger {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid #DEE2E6;
}

.mobile-wishlist-trigger .wishlist-trigger {
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}

main > section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-reimagined {
  background-color: #F0F4F8;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-reimagined .hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text {
  flex-basis: 50%;
}

.hero-text h1 {
  font-size: 3.8rem;
  margin-bottom: 0.5em;
}

.hero-text .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2em;
  max-width: 500px;
}

.hero-visual {
  flex-basis: 50%;
}

.hero-visual img {
  border-radius: 16px;
}

.featured-draw {
  background-color: #1c2a39;
  color: #FFFFFF;
}

.featured-draw h2 {
  color: #FFFFFF;
}

.featured-draw-content {
  display: flex;
  background-color: #2a3b4c;
  border-radius: 20px;
  padding: 50px;
  gap: 50px;
  align-items: center;
}

.featured-game-info {
  flex: 2;
}

.game-tag {
  background-color: #FFA726;
  color: #1c2a39;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.featured-game-info h3 {
  font-size: 2.5rem;
  margin: 0.5em 0;
}

.jackpot-amount {
  font-size: 4.5rem;
  font-weight: 800;
  color: #E63946;
  margin-bottom: 0.2em;
}

.featured-game-info .description {
  color: #cdd3da;
  max-width: 450px;
  margin-bottom: 2em;
}

.featured-draw-timer {
  flex: 1;
  background: rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
}

.featured-draw-timer h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
  color: #cdd3da;
}

.countdown {
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

.countdown-item span {
  font-size: 3rem;
  font-weight: 700;
  display: block;
}

.countdown-item label {
  font-size: 0.9rem;
  color: #9aa5b3;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.step {
  text-align: center;
  flex: 1;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #F0F4F8;
  color: #2D72D9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.5rem auto;
  border: 3px solid #DEE2E6;
}

.step h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: #5a6675;
}

.step-arrow {
  font-size: 2.5rem;
  color: #DEE2E6;
  margin-top: 50px;
}

.dreamer-stories {
  background-color: #F8F9FA;
}

.story-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.story-image img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-category {
  display: inline-block;
  font-weight: 600;
  color: #5a6675;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.story-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  color: #5a6675;
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.vibe-card {
  display: block;
  padding: 30px;
  border: 2px solid #DEE2E6;
  border-radius: 16px;
  transition: all 0.3s ease;
  color: #333D49;
}

.vibe-card:hover {
  border-color: #2D72D9;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(45, 114, 217, 0.1);
}

.vibe-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1c2a39;
}

.dreamer-hub-expanded {
  background-color: #F8F9FA;
}

.articles-grid-expanded {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.article-card-large {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.article-card-large img {
  height: 350px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-content {
  padding: 30px;
}

.article-tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: #2D72D9;
  color: #FFFFFF;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.article-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-side-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.article-card-small {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.article-card-small h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.voice-card {
  border: 1px solid #DEE2E6;
  background-color: #F8F9FA;
  padding: 30px;
  border-radius: 16px;
  position: relative;
}

.voice-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: #DEE2E6;
  line-height: 1;
  z-index: 0;
}

.voice-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem 0;
  font-style: italic;
}

.voice-card span {
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.site-footer {
  background-color: #1c2a39;
  color: #cdd3da;
  padding-top: 60px;
  font-size: 0.95rem;
}

.footer-top {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #2a3b4c;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-tagline {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #9aa5b3;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.footer-column h4 {
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 1em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.7em;
}

.footer-column a {
  color: #cdd3da;
}

.footer-column a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-column .email-link {
  font-weight: 600;
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid #2a3b4c;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #9aa5b3;
}

.footer-bottom p {
  margin: 0;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 42, 57, 0.8);
  z-index: 2000;
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
  padding: 5vh 20px;
  box-sizing: border-box;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-container {
  background-color: #FFFFFF;
  border-radius: 16px;
  width: 90%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideInUp 0.4s ease;
  margin: 0 auto;
  max-height: none;
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #DEE2E6;
}

.modal-header h2 {
  font-size: 1.8rem;
  margin: 0;
  text-align: left;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  color: #9aa5b3;
  transition: color 0.2s;
}

.modal-close-btn:hover {
  color: #333D49;
}

.modal-body {
  padding: 30px;
  flex-grow: 1;
}

.empty-wishlist-message {
  text-align: center;
  color: #5a6675;
  font-size: 1.1rem;
  padding: 40px 0;
}

.wishlist-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wishlist-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #F0F4F8;
}

.wishlist-items li:last-child {
  border-bottom: none;
}

.item-info .item-game-name {
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}

.item-info .item-numbers {
  color: #5a6675;
  font-size: 1rem;
}

.item-remove-btn {
  background-color: #fde8e9;
  color: #E63946;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s;
}

.item-remove-btn:hover {
  background-color: #f9d3d5;
}

.modal-footer {
  padding: 30px;
  background-color: #F8F9FA;
  border-top: 1px solid #DEE2E6;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

#wishlist-form h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

#wishlist-form p {
  text-align: center;
  color: #5a6675;
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input[type=text],
.form-group input[type=email] {
  width: 100%;
  padding: 12px;
  border: 1px solid #DEE2E6;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #2D72D9;
  box-shadow: 0 0 0 3px rgba(45, 114, 217, 0.15);
}

.form-group-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group-checkbox input {
  width: 18px;
  height: 18px;
}

#wishlist-form button {
  width: 100%;
}

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

.form-success h3 {
  color: #2D72D9;
  font-size: 2rem;
}

@media (max-width: 992px) {
  .main-nav,
  .site-header > .wishlist-trigger {
    display: none;
  }
  .burger-menu-toggle {
    display: block;
  }
  h2 {
    font-size: 2.4rem;
  }
  main > section {
    padding: 60px 0;
  }
  .hero-reimagined .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-text .subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .featured-draw-content {
    flex-direction: column;
    padding: 30px;
  }
  .featured-game-info {
    text-align: center;
  }
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 0;
  }
  .story-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .articles-grid-expanded {
    grid-template-columns: 1fr;
  }
  .voices-grid {
    grid-template-columns: 1fr;
  }
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .hero-text h1 {
    font-size: 2.5rem !important;
  }
  h2 {
    font-size: 2rem;
  }
  .site-header .container {
    flex-direction: row;
    height: 70px;
  }
  .jackpot-amount {
    font-size: 3.5rem;
  }
  .vibe-grid {
    grid-template-columns: 1fr;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 479px) {
  .jackpot-amount {
    font-size: 2.5rem;
  }
}
.page-hero {
  background-color: #F0F4F8;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-hero h1 {
  font-size: 3.5rem;
  color: #1c2a39;
  margin-bottom: 0.5em;
}

.page-hero .page-subtitle {
  font-size: 1.2rem;
  color: #5a6675;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.game-gallery {
  padding-top: 80px;
  padding-bottom: 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.game-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.game-card-header {
  padding: 30px;
  color: #FFFFFF;
  text-align: center;
}

.game-card-header h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.game-card-header .jackpot-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.game-card-header .game-jackpot {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0.2em 0 0 0;
  line-height: 1.2;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.powerball-bg {
  background: linear-gradient(45deg, #d32f2f, #e63946);
}

.ozlotto-bg {
  background: linear-gradient(45deg, #0277bd, #039be5);
}

.satlotto-bg {
  background: linear-gradient(45deg, #6a1b9a, #8e24aa);
}

.setforlife-bg {
  background: linear-gradient(45deg, #2e7d32, #43a047);
}

.monwed-bg {
  background: linear-gradient(45deg, #ff8f00, #ffa000);
}

.lucky-bg {
  background: linear-gradient(45deg, #1c3faa, #3d5afe);
}

.game-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-character {
  color: #333D49;
  font-size: 1.05rem;
  line-height: 1.6;
  flex-grow: 1;
  margin: 0 0 1.5rem 0;
}

.draw-info {
  display: block;
  text-align: center;
  color: #5a6675;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.game-card-body .button-primary {
  width: 100%;
  box-sizing: border-box;
}

.guidance-block {
  background-color: #F8F9FA;
  padding-top: 80px;
  padding-bottom: 80px;
}

.guidance-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.guidance-text {
  flex-basis: 60%;
}

.guidance-text h2 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.guidance-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #5a6675;
}

.guidance-image {
  flex-basis: 40%;
  text-align: center;
}

.guidance-image img {
  max-width: 250px;
  opacity: 0.7;
}

@media (max-width: 992px) {
  .page-hero h1 {
    font-size: 2.8rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  .guidance-content {
    flex-direction: column;
    text-align: center;
  }
  .guidance-text h2 {
    text-align: center;
  }
  .guidance-image {
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.2rem;
  }
  .page-hero .page-subtitle {
    font-size: 1rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.game-hero {
  padding: 60px 0;
  color: #FFFFFF;
  text-align: center;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
}

.game-hero h1 {
  font-size: 4rem;
  margin: 0;
}

.game-hero .game-tagline {
  font-size: 1.5rem;
  margin: 0.5em 0 1.5em 0;
  opacity: 0.9;
}

.current-jackpot {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 15px 30px;
}

.current-jackpot span {
  display: block;
  font-size: 1rem;
  opacity: 0.8;
}

.current-jackpot strong {
  display: block;
  font-size: 2.5rem;
  line-height: 1.2;
}

.interactive-picker {
  background-color: #F8F9FA;
  padding: 80px 0;
}

.picker-container {
  display: flex;
  gap: 40px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.number-grid-area {
  flex: 3;
  border-right: 1px solid #DEE2E6;
  padding-right: 40px;
}

.grid-header {
  margin-bottom: 1.5rem;
}

.grid-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.grid-header p {
  color: #5a6675;
  margin: 0;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 2rem;
}

.number-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #DEE2E6;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.number-cell:hover {
  border-color: #2D72D9;
  color: #2D72D9;
}

.number-cell.selected {
  background-color: #2D72D9;
  color: #FFFFFF;
  border-color: #2D72D9;
}

.number-cell.disabled {
  background-color: #e9ecef;
  color: #adb5bd;
  border-color: #e9ecef;
  cursor: not-allowed;
}

.picker-controls {
  flex: 1.5;
  display: flex;
  flex-direction: column;
}

.picker-controls h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.selected-numbers-display {
  background-color: #F8F9FA;
  padding: 20px;
  border-radius: 12px;
  flex-grow: 1;
}

.selected-numbers-display p {
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.main-selection-slots,
.supp-selection-slots {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 1rem;
}

.supp-selection-slots {
  grid-template-columns: repeat(3, 1fr);
}

.slot {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 8px;
  font-weight: 700;
  background-color: #FFFFFF;
  border: 1px dashed #ced4da;
  color: #2D72D9;
}

.slot.empty {
  background-color: transparent;
}

.picker-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 1.5rem 0;
}

.button-tertiary {
  background-color: #e9ecef;
  color: #495057;
  border: none;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button-tertiary:hover {
  background-color: #d8dde2;
}

.add-to-wishlist-btn {
  width: 100%;
  margin-top: auto;
}

.add-to-wishlist-btn:disabled {
  background-color: #adb5bd;
  cursor: not-allowed;
}

.wishlist-info {
  font-size: 0.8rem;
  color: #5a6675;
  text-align: center;
  margin-top: 1rem;
}

.game-info-details {
  padding: 80px 0;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.how-to-play h2,
.prize-tiers h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.info-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #F0F4F8;
  color: #2D72D9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.step-text p {
  margin: 0;
  color: #5a6675;
}

.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

table th,
table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #DEE2E6;
}

table thead th {
  background-color: #F8F9FA;
  font-weight: 700;
  color: #333D49;
}

table tbody tr:hover {
  background-color: #F8F9FA;
}

table td:nth-child(1) {
  font-weight: 700;
}

.game-highlights {
  background-color: #F8F9FA;
  padding: 80px 0;
}

.game-highlights h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.highlight-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.highlight-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
  .picker-container {
    flex-direction: column;
  }
  .number-grid-area {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #DEE2E6;
    padding-bottom: 30px;
  }
  .number-grid {
    grid-template-columns: repeat(auto-fit, minmax(45px, 1fr));
  }
  .details-grid {
    grid-template-columns: 1fr;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .game-hero h1 {
    font-size: 3rem;
  }
  .current-jackpot strong {
    font-size: 2rem;
  }
}
.results-overview {
  padding-top: 80px;
  padding-bottom: 80px;
}

.results-controls {
  background-color: #F8F9FA;
  padding: 30px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 50px;
  border: 1px solid #DEE2E6;
}

.control-group {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.control-group label {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.control-group select,
.control-group input[type=date] {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ced4da;
  font-size: 1rem;
  background-color: #FFFFFF;
}

.results-controls .button-primary {
  padding: 12px 30px;
  flex-shrink: 0;
}

.results-list {
  display: grid;
  gap: 40px;
}

.result-card {
  background-color: #FFFFFF;
  border: 1px solid #DEE2E6;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.result-card-header {
  padding: 20px 30px;
  border-bottom: 1px solid #F0F4F8;
}

.result-card-header h3 {
  font-size: 1.8rem;
  margin: 0;
}

.result-meta {
  color: #5a6675;
  font-weight: 500;
}

.result-card-body {
  padding: 30px;
}

.winning-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 2rem;
}

.number-set {
  flex-grow: 1;
}

.number-set label {
  display: block;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333D49;
}

.numbers-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.number-ball {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
}

.number-ball.main {
  background-color: #2D72D9;
}

.number-ball.powerball {
  background-color: #E63946;
}

.number-ball.supp {
  background-color: #FFA726;
  color: #1c2a39;
}

.result-jackpot {
  background-color: #F8F9FA;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
}

.result-jackpot h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #333D49;
}

.result-jackpot strong {
  color: #2e7d32;
}

.result-card-footer {
  padding: 20px 30px;
  background-color: #F8F9FA;
  border-top: 1px solid #F0F4F8;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.result-card-footer a {
  font-weight: 700;
}

.winners-teaser {
  background-color: #F0F4F8;
  padding: 80px 0;
}

.teaser-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  background-color: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.teaser-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.teaser-text {
  padding: 50px;
}

.teaser-tag {
  display: inline-block;
  color: #5a6675;
  font-weight: 600;
  margin-bottom: 1rem;
}

.teaser-text h2 {
  text-align: left;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.teaser-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.results-faq {
  padding: 80px 0;
}

.results-faq h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.faq-item {
  background-color: #F8F9FA;
  padding: 30px;
  border-radius: 12px;
}

.faq-item h4 {
  font-size: 1.3rem;
  margin: 0 0 0.75rem 0;
}

.faq-item p {
  margin: 0;
  color: #5a6675;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .teaser-content {
    grid-template-columns: 1fr;
  }
  .teaser-image {
    height: 300px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .results-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .winning-numbers {
    flex-direction: column;
    gap: 20px;
  }
  .number-ball {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}
.hub-hero {
  background: radial-gradient(circle, #f0f4f8 0%, #ffffff 100%);
  text-align: center;
  padding: 80px 0;
}

.hub-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #1c2a39;
  margin-bottom: 0.5em;
}

.hub-hero .hub-subtitle {
  font-size: 1.3rem;
  color: #5a6675;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.hub-featured-post,
.hub-latest-posts {
  padding-top: 80px;
  padding-bottom: 80px;
}

.hub-latest-posts {
  background-color: #F8F9FA;
}

.hub-latest-posts h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.featured-post-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
  background-color: #FFFFFF;
  color: #333D49;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.featured-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.featured-post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.featured-post-content {
  padding: 40px;
}

.post-category {
  display: inline-block;
  font-weight: 700;
  color: #2D72D9;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.featured-post-content h2,
.post-card-content h3 {
  font-size: 2.2rem;
  color: #1c2a39;
  line-height: 1.3;
  margin: 0 0 1rem 0;
}

.post-card-content h3 {
  font-size: 1.5rem;
}

.featured-post-content p,
.post-card-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  color: #5a6675;
}

.read-more-link {
  font-weight: 700;
  color: #2D72D9;
  text-decoration: none;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.post-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.post-card-image-link img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card-image-link:hover img {
  transform: scale(1.05);
}

.post-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-card-content p {
  flex-grow: 1;
  font-size: 1rem;
}

.hub-categories {
  padding: 60px 0;
  text-align: center;
}

.hub-categories h2 {
  margin-bottom: 2rem;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.category-tag {
  display: inline-block;
  padding: 10px 25px;
  background-color: #F0F4F8;
  color: #333D49;
  border: 1px solid #DEE2E6;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.category-tag:hover {
  background-color: #2D72D9;
  color: #FFFFFF;
  border-color: #2D72D9;
}

.hub-quote {
  padding: 80px 0;
  background-color: #1c2a39;
  color: #FFFFFF;
}

.hub-quote blockquote {
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
}

.hub-quote footer {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  font-style: normal;
  color: #9aa5b3;
}

.hub-subscribe {
  padding: 80px 0;
  background-color: #F8F9FA;
}

.subscribe-box {
  background-color: #FFFFFF;
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.subscribe-box h3 {
  font-size: 2rem;
  margin: 0 0 1rem 0;
}

.subscribe-box p {
  color: #5a6675;
  margin: 0 0 2rem 0;
  line-height: 1.7;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.subscribe-form input[type=email] {
  flex-grow: 1;
  padding: 14px 20px;
  border: 1px solid #ced4da;
  border-radius: 50px;
  font-size: 1rem;
}

.subscribe-form input[type=email]:focus {
  outline: none;
  border-color: #2D72D9;
}

.subscribe-form .button-primary {
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .featured-post-card {
    grid-template-columns: 1fr;
  }
  .featured-post-image {
    height: 350px;
  }
  .posts-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .hub-hero h1 {
    font-size: 3rem;
  }
  .hub-hero .hub-subtitle {
    font-size: 1.1rem;
  }
  .featured-post-content {
    padding: 30px;
  }
  .featured-post-content h2 {
    font-size: 1.8rem;
  }
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .hub-quote blockquote {
    font-size: 1.5rem;
  }
  .subscribe-box {
    padding: 40px 30px;
  }
  .subscribe-form {
    flex-direction: column;
  }
}
.article-trigger {
  cursor: pointer;
}

.post-card-image-link {
  padding: 0;
  border: none;
  background: none;
  width: 100%;
  display: block;
}

.read-more-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 1rem;
  text-align: left;
}

.read-more-link:hover {
  text-decoration: underline;
}

.article-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 3000;
  overflow-y: auto;
  padding: 50px 20px;
  box-sizing: border-box;
  animation: fadeIn 0.4s ease;
}

.article-popup-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  animation: slideInUp 0.5s ease;
}

.article-popup-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 10;
}

.article-popup-close-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #e9ecef;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}

.article-popup-close-btn:hover {
  background-color: #1c2a39;
  color: #FFFFFF;
}

.article-popup-content {
  padding: 0 50px 50px 50px;
}

.article-popup-image {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.article-popup-text-content h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5em;
}

.article-popup-text-content h2 {
  font-size: 1.8rem;
  margin-top: 2em;
  margin-bottom: 1em;
  text-align: left;
}

.article-popup-text-content .post-category {
  font-size: 1rem;
}

.article-popup-text-content .article-intro {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333D49;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.article-popup-text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333D49;
  margin-bottom: 1.5rem;
}

.article-popup-text-content ul {
  font-size: 1.1rem;
  line-height: 1.8;
  padding-left: 25px;
}

.article-popup-text-content li {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .article-popup-overlay {
    padding: 0;
  }
  .article-popup-container {
    border-radius: 0;
    min-height: 100%;
  }
  .article-popup-content {
    padding: 0 20px 30px 20px;
  }
  .article-popup-text-content h1 {
    font-size: 2rem;
  }
}
.subscribe-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 42, 57, 0.85);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 2500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  animation: fadeIn 0.3s ease;
}

.subscribe-popup-container {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideInUp 0.4s ease;
  position: relative;
}

.subscribe-popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #adb5bd;
}

.subscribe-popup-close-btn:hover {
  color: #333D49;
}

.subscribe-popup-container h3 {
  font-size: 1.8rem;
  margin: 0 0 1rem 0;
}

.subscribe-popup-container p {
  color: #5a6675;
  margin-bottom: 1.5rem;
}

.subscribe-popup-container .email-display {
  display: inline-block;
  background-color: #F0F4F8;
  padding: 4px 12px;
  border-radius: 8px;
  font-weight: 700;
  color: #2D72D9;
  margin-bottom: 2rem;
}

#final-subscribe-form .form-group-checkbox {
  text-align: left;
  margin-bottom: 2rem;
}

#final-subscribe-form .button-primary {
  width: 100%;
}

#final-subscribe-form .button-primary:disabled {
  background-color: #adb5bd;
  cursor: not-allowed;
}

.subscribe-success-message {
  padding: 20px 0;
}

.subscribe-success-message .icon {
  font-size: 3rem;
  color: #2e7d32;
  margin-bottom: 1rem;
}

.how-it-works-steps {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #FFFFFF;
}

.step-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-item.reverse {
  direction: rtl;
}

.step-item.reverse > * {
  direction: ltr;
}

.step-content {
  padding: 20px;
}

.step-number-badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: #F0F4F8;
  color: #2D72D9;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.step-content h2 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5a6675;
}

.step-content p a {
  font-weight: 600;
}

.step-image img {
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.wishlist-deep-dive {
  background-color: #F8F9FA;
  padding-top: 80px;
  padding-bottom: 80px;
}

.wishlist-deep-dive h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.deep-dive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.deep-dive-item {
  text-align: center;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #DEE2E6;
}

.deep-dive-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.deep-dive-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.deep-dive-item p {
  color: #5a6675;
  line-height: 1.7;
  margin: 0;
}

.final-cta {
  background-color: #1c2a39;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  color: #FFFFFF;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.2rem;
  color: #cdd3da;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .step-item,
  .step-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  .step-content h2 {
    font-size: 2rem;
  }
  .deep-dive-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .how-it-works-steps {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .step-item {
    margin-bottom: 60px;
  }
  .step-image {
    order: -1;
  }
  .step-content {
    padding: 0;
  }
}
.legal-content-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #FFFFFF;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
}

.legal-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
  height: calc(100vh - 140px);
}

.legal-nav h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #DEE2E6;
}

.legal-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-nav li {
  margin-bottom: 0.5rem;
}

.legal-nav a {
  display: block;
  padding: 8px 12px;
  color: #5a6675;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.legal-nav a:hover {
  background-color: #F0F4F8;
  color: #333D49;
}

.legal-nav a.active {
  background-color: #e4eef8;
  color: #2D72D9;
  font-weight: 700;
}

.legal-document {
  line-height: 1.8;
  font-size: 1rem;
  color: #333D49;
}

.legal-document .document-intro {
  font-size: 1.1rem;
  font-weight: 500;
  padding-bottom: 2rem;
  border-bottom: 1px solid #DEE2E6;
  margin-bottom: 2rem;
}

.legal-document h2 {
  font-size: 1.8rem;
  text-align: left;
  margin-bottom: 1.5rem;
  padding-top: 20px;
}

.legal-document p {
  margin-bottom: 1.5rem;
}

.legal-document a {
  font-weight: 600;
  text-decoration: underline;
}

.legal-document a:hover {
  text-decoration: none;
}

.legal-document strong {
  color: #1c2a39;
}

@media (max-width: 992px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-sidebar {
    position: static;
    height: auto;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #DEE2E6;
  }
  .legal-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .legal-nav h4 {
    border-bottom: none;
    padding-bottom: 0;
  }
  .legal-nav a {
    background-color: #F0F4F8;
  }
}
.raffle-entry-block {
  background-color: #F8F9FA;
  padding: 80px 0;
}

.entry-box {
  background-color: #FFFFFF;
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.entry-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
}

.entry-box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.entry-box p {
  color: #5a6675;
  line-height: 1.7;
  margin: 0 auto 2rem auto;
  max-width: 550px;
}

.entry-box .add-to-wishlist-btn {
  margin-bottom: 1rem;
}

.article-page main {
  padding-top: 0;
}

.article-page .site-header {
  position: absolute;
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.article-page .site-header .logo,
.article-page .site-header .main-nav a {
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.article-page .wishlist-trigger {
  background-color: rgba(255, 255, 255, 0.9);
}

.article-page.menu-open .site-header {
  position: sticky;
  background-color: rgba(255, 255, 255, 0.95);
}

.article-page.menu-open .site-header .logo,
.article-page.menu-open .site-header .main-nav a {
  color: #1c2a39;
  text-shadow: none;
}

.article-header {
  position: relative;
  color: #FFFFFF;
  background-color: #1c2a39;
  padding: 200px 0 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.article-header .header-content {
  position: relative;
  z-index: 2;
}

.article-header .post-category {
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
}

.article-header h1 {
  font-size: 4.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  margin: 0.5em 0;
}

.article-header .article-subtitle {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  opacity: 0.9;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.author-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 0.9rem;
}

.author-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
}

.article-featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.article-featured-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.article-featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-body {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.container-narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.article-body .article-intro {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.7;
  color: #333D49;
  margin-bottom: 2.5rem;
}

.article-body h2 {
  font-size: 2rem;
  text-align: left;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.article-body p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333D49;
  margin-bottom: 1.5rem;
}

.article-quote {
  margin: 3rem 0;
  padding: 2rem;
  border-left: 4px solid #2D72D9;
  background-color: #F8F9FA;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
}

.article-quote p {
  margin: 0;
  font-size: 1.4rem;
}

.article-quote footer {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  font-style: normal;
  color: #5a6675;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 3rem 0;
}

.article-gallery figure {
  margin: 0;
}

.article-gallery img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.article-gallery figcaption {
  font-size: 0.9rem;
  color: #5a6675;
  text-align: center;
}

.article-footer {
  padding: 60px 0;
  background-color: #F8F9FA;
  border-top: 1px solid #DEE2E6;
  text-align: center;
}

.article-footer h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.article-footer p {
  color: #5a6675;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .article-page .site-header,
  .article-page.menu-open .site-header {
    position: sticky;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #DEE2E6;
  }
  .article-page .site-header .logo,
  .article-page .site-header .main-nav a {
    color: #1c2a39;
    text-shadow: none;
  }
  .article-header {
    padding: 150px 0 60px 0;
  }
  .article-header h1 {
    font-size: 2.5rem;
  }
  .article-header .article-subtitle {
    font-size: 1.2rem;
  }
}
.kjg23jas h2 {
  text-align: left;
}

.jkgh13981ha {
  display: none;
}

.k01g9j13j {
  display: none;
}

.ff332f2s {
  display: none;
}

.jgh83hh {
  display: none;
}

.fj319j {
  display: none;
}

.gkjg293j {
  display: none;
}

body.no-scroll {
  overflow: hidden;
}

.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1c2a39;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  color: #FFFFFF;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-gate-overlay.is-visible {
  visibility: visible;
  opacity: 1;
}

.age-gate-container {
  max-width: 550px;
}

.age-gate-logo {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.age-gate-container h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.age-gate-container p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0 auto 1rem auto;
  max-width: 450px;
}

.age-gate-container .disclaimer {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.age-gate-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.age-gate-buttons .button-primary {
  background-color: #FFFFFF;
  color: #1c2a39;
  border: 2px solid #FFFFFF;
}

.age-gate-buttons .button-primary:hover {
  background-color: transparent;
  color: #FFFFFF;
}

.age-gate-buttons .button-secondary {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
}

.age-gate-buttons .button-secondary:hover {
  background-color: #FFFFFF;
  color: #1c2a39;
  border-color: #FFFFFF;
}

@media (max-width: 768px) {
  .age-gate-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
.footer-legal-disclaimer {
  padding: 30px 0;
  margin: 30px 0;
  border-top: 1px solid #2a3b4c;
  border-bottom: 1px solid #2a3b4c;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #9aa5b3;
  text-align: center;
}

.footer-legal-disclaimer p {
  max-width: 800px;
  margin: 0 auto 1rem auto;
}

.footer-legal-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-legal-disclaimer strong {
  color: #cdd3da;
}

.footer-legal-disclaimer a {
  color: #cdd3da;
  text-decoration: underline;
}

.footer-legal-disclaimer a:hover {
  color: #FFFFFF;
}

.jhg238hh {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding-bottom: 30px;
}

.hk30434hd img {
  height: 40px;
  max-width: 150px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.hk30434hd:hover img {
  opacity: 1;
}

.lh4093jj img {
  height: 50px;
}/*# sourceMappingURL=style.css.map */