/* style/lottery.css */
.page-lottery {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Text color for dark body background */
  background-color: #000000; /* Body background color from shared.css */
}

.page-lottery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-lottery__section {
  padding: 60px 0;
  margin-bottom: 0; /* Remove default margin */
}

.page-lottery__dark-section {
  background-color: rgba(178, 34, 34, 0.1); /* Slightly transparent main color on dark background */
}

.page-lottery__heading {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold heading for contrast */
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-lottery__paragraph {
  font-size: 17px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery__paragraph a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-lottery__paragraph a:hover {
  text-decoration: underline;
}

.page-lottery__btn-primary,
.page-lottery__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  margin-top: 20px;
}

.page-lottery__btn-primary {
  background-color: #B22222; /* Firebrick */
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(178, 34, 34, 0.4);
}

.page-lottery__btn-primary:hover {
  background-color: #8B0000; /* Darker Firebrick */
  box-shadow: 0 8px 20px rgba(178, 34, 34, 0.6);
  transform: translateY(-2px);
}

.page-lottery__btn-secondary {
  background-color: #FFD700; /* Gold */
  color: #333333;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-lottery__btn-secondary:hover {
  background-color: #DAA520; /* Darker Gold */
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}

/* Top spacing for main content to clear fixed header */
.page-lottery {
  padding-top: 100px; /* Adjust as needed for header height */
}

@media (max-width: 768px) {
  .page-lottery {
    padding-top: 80px; /* Adjust for mobile header height */
  }
}

/* HERO Section */
.page-lottery__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin-top: -100px; /* Counteract padding-top on main */
}

@media (max-width: 768px) {
  .page-lottery__hero-section {
    margin-top: -80px; /* Counteract padding-top on main for mobile */
  }
}

.page-lottery__hero-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.page-lottery__hero-image {
  width: 100%;
  margin: 0;
}

.page-lottery__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .page-lottery__hero-section {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-lottery__hero-image img {
    width: 100%;
    height: auto;
  }
}

/* LOGO Carousel Section */
.page-lottery__logo-carousel-section {
  width: 100%;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.05); /* Light transparent background */
}

.page-lottery__logo-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.page-lottery__logo-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 10px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none; /* Disable user dragging */
}

.page-lottery__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-lottery__logo-item {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto; /* Allow clicks on the item itself */
}

.page-lottery__logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-lottery__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
  box-sizing: border-box;
  pointer-events: auto; /* Allow clicks on the link */
}

.page-lottery__logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .page-lottery__logo-carousel-section {
    padding: 30px 15px;
  }
  
  .page-lottery__logo-item {
    width: 150px;
    height: 150px;
  }
  
  .page-lottery__logo-carousel {
    gap: 15px;
  }
}

/* Game Display Section */
.page-lottery__games-section {
  width: 100%;
  padding: 60px 0;
  background-color: #000000;
}

.page-lottery__games-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-lottery__games-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.page-lottery__featured-game-area {
  width: 100%;
}

.page-lottery__featured-game-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: #FFD700; /* Gold text */
  text-align: left;
  text-transform: uppercase;
}

.page-lottery__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #1a1a1a; /* Darker background for card */
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery__featured-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.page-lottery__featured-game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-lottery__featured-game-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.page-lottery__featured-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-lottery__games-grid-area {
  width: 100%;
}

.page-lottery__games-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center; /* Center tabs */
}

.page-lottery__games-tab {
  background: none;
  border: none;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #999999;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
}

.page-lottery__games-tab:hover {
  color: #ffffff;
}

.page-lottery__games-tab.active {
  color: #FFD700; /* Gold text for active tab */
  border-bottom: 2px solid #FFD700;
}

.page-lottery__games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: none;
}

.page-lottery__games-grid.active {
  display: grid;
}

.page-lottery__game-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1a1a1a; /* Darker background for card */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.page-lottery__game-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-lottery__game-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.page-lottery__game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-lottery__game-card-title {
  font-size: 15px;
  font-weight: 600;
  margin: 10px 0 15px 0;
  padding: 0 5px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .page-lottery__games-layout {
    grid-template-columns: 1fr;
  }
  
  .page-lottery__games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-lottery__featured-game-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .page-lottery__games-section {
    padding: 40px 15px;
  }
  
  .page-lottery__games-container {
    padding: 0 15px;
  }
  
  .page-lottery__games-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .page-lottery__featured-game-title {
    font-size: 22px;
  }
  
  .page-lottery__featured-game-image {
    height: 300px;
  }
  
  .page-lottery__games-tabs {
    gap: 15px;
  }
  
  .page-lottery__games-tab {
    font-size: 16px;
    padding: 8px 12px;
  }
  
  .page-lottery__games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .page-lottery__game-card-image {
    height: 150px;
  }
  
  .page-lottery__game-card-title {
    font-size: 13px;
    margin: 8px 0 10px 0;
    padding: 0 3px;
  }
}

/* Intro Section */
.page-lottery__intro-section .page-lottery__heading {
  color: #FFD700;
}

.page-lottery__intro-section .page-lottery__paragraph {
  font-size: 18px;
  line-height: 1.8;
}

.page-lottery__intro-section .page-lottery__btn-primary {
  margin: 40px auto 0 auto;
  display: block;
  max-width: 300px;
}

/* Quick Access Section */
.page-lottery__quick-access-section {
  background-color: #000000;
}

.page-lottery__quick-access-section .page-lottery__heading {
  color: #B22222;
}

.page-lottery__quick-access-section .page-lottery__paragraph {
  color: #f0f0f0;
}

.page-lottery__link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-lottery__quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a; /* Darker background */
  padding: 25px;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery__quick-link-card:hover {
  background-color: #B22222; /* Primary color on hover */
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(178, 34, 34, 0.4);
}

.page-lottery__quick-link-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-lottery__quick-link-text {
  display: block;
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .page-lottery__link-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .page-lottery__quick-link-card {
    padding: 20px;
    font-size: 14px;
  }
  .page-lottery__quick-link-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
}

/* Core Games Section */
.page-lottery__core-games-section .page-lottery__heading {
  color: #FFD700;
}

.page-lottery__core-games-section .page-lottery__paragraph {
  font-size: 17px;
  line-height: 1.7;
}

.page-lottery__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-lottery__category-item {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-lottery__category-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-lottery__category-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery__category-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-lottery__category-description {
  font-size: 15px;
  color: #f0f0f0;
  line-height: 1.6;
  text-align: left;
}

.page-lottery__category-description a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
}

.page-lottery__category-description a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-lottery__game-categories {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-lottery__category-item {
    padding: 25px;
  }
  .page-lottery__category-item img {
    width: 120px;
    height: 120px;
  }
  .page-lottery__category-title {
    font-size: 20px;
  }
  .page-lottery__category-description {
    font-size: 14px;
  }
}

/* Promotions Section */
.page-lottery__promotions-section {
  background-color: #000000;
}

.page-lottery__promotions-section .page-lottery__heading {
  color: #B22222;
}

.page-lottery__promotions-section .page-lottery__paragraph {
  color: #f0f0f0;
}

.page-lottery__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-lottery__promotion-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-lottery__promotion-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-lottery__promotion-card img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery__promotion-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-lottery__promotion-description {
  font-size: 15px;
  color: #f0f0f0;
  line-height: 1.6;
  text-align: center;
}

.page-lottery__promotion-description a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
}

.page-lottery__promotion-description a:hover {
  text-decoration: underline;
}

.page-lottery__promotion-card .page-lottery__btn-secondary {
  margin-top: 25px;
  width: auto; /* Allow button to size based on content */
  padding: 12px 25px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .page-lottery__promotion-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-lottery__promotion-card img {
    width: 200px;
    height: 120px;
  }
  .page-lottery__promotion-title {
    font-size: 20px;
  }
  .page-lottery__promotion-description {
    font-size: 14px;
  }
}

/* Safety & Support Section */
.page-lottery__safety-support-section .page-lottery__heading {
  color: #FFD700;
}

.page-lottery__safety-support-section .page-lottery__paragraph {
  font-size: 17px;
  line-height: 1.7;
}

.page-lottery__safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-lottery__safety-item {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-lottery__safety-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery__safety-title {
  font-size: 20px;
  font-weight: bold;
  color: #B22222;
  margin-bottom: 10px;
}

.page-lottery__safety-description {
  font-size: 15px;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-lottery__safety-description a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
}

.page-lottery__safety-description a:hover {
  text-decoration: underline;
}

.page-lottery__safety-support-section .page-lottery__btn-primary {
  margin: 40px auto 0 auto;
  display: block;
  max-width: 250px;
}

@media (max-width: 768px) {
  .page-lottery__safety-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-lottery__safety-item img {
    width: 80px;
    height: 80px;
  }
  .page-lottery__safety-title {
    font-size: 18px;
  }
  .page-lottery__safety-description {
    font-size: 14px;
  }
}

/* FAQ Section */
.page-lottery__faq-section {
  background-color: #000000;
}

.page-lottery__faq-section .page-lottery__heading {
  color: #B22222;
}

.page-lottery__faq-list {
  margin-top: 40px;
}

.page-lottery__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1a1a1a; /* Darker background for FAQ item */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-lottery__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: #f0f0f0;
  font-size: 15px;
  line-height: 1.6;
}

.page-lottery__faq-item.active .page-lottery__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background-color: #2a2a2a; /* Slightly lighter dark background */
  border-radius: 0 0 8px 8px;
}

.page-lottery__faq-answer p {
  margin: 0;
  text-align: left;
}

.page-lottery__faq-answer a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
}

.page-lottery__faq-answer a:hover {
  text-decoration: underline;
}

.page-lottery__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background-color: #1a1a1a;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-lottery__faq-question:hover {
  background-color: #2a2a2a;
}

.page-lottery__faq-question:active {
  background-color: #3a3a3a;
}

.page-lottery__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
  text-align: left;
}

.page-lottery__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-lottery__faq-item.active .page-lottery__faq-toggle {
  color: #B22222;
  transform: rotate(45deg); /* Rotate for 'x' effect */
}

@media (max-width: 768px) {
  .page-lottery__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-lottery__faq-question h3 {
    font-size: 15px;
    width: calc(100% - 40px);
  }
  
  .page-lottery__faq-toggle {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    font-size: 24px;
  }
  
  .page-lottery__faq-answer {
    padding: 0 15px;
  }
  
  .page-lottery__faq-item.active .page-lottery__faq-answer {
    padding: 15px !important;
  }
}

/* Blog Section */
.page-lottery__blog-section .page-lottery__heading {
  color: #FFD700;
}

.page-lottery__blog-section .page-lottery__paragraph {
  color: #f0f0f0;
}

.page-lottery__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-lottery__blog-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-lottery__blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-lottery__blog-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-lottery__blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-lottery__blog-content {
  padding: 20px;
  text-align: left;
}

.page-lottery__blog-title {
  font-size: 20px;
  font-weight: bold;
  color: #B22222;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-lottery__blog-excerpt {
  font-size: 15px;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-lottery__blog-excerpt a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
}

.page-lottery__blog-excerpt a:hover {
  text-decoration: underline;
}

.page-lottery__blog-date {
  font-size: 13px;
  color: #999999;
  display: block;
}

@media (max-width: 768px) {
  .page-lottery__blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-lottery__blog-card img {
    height: 180px;
  }
  .page-lottery__blog-title {
    font-size: 18px;
  }
  .page-lottery__blog-excerpt {
    font-size: 14px;
  }
  .page-lottery__blog-content {
    padding: 15px;
  }
}

/* Responsive image adaptation for all images */
.page-lottery img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-lottery img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-lottery__section,
  .page-lottery__container,
  .page-lottery__logo-carousel-container,
  .page-lottery__games-container,
  .page-lottery__link-grid,
  .page-lottery__game-categories,
  .page-lottery__promotion-grid,
  .page-lottery__safety-grid,
  .page-lottery__faq-list,
  .page-lottery__blog-grid,
  .page-lottery__quick-link-card,
  .page-lottery__game-card,
  .page-lottery__category-item,
  .page-lottery__promotion-card,
  .page-lottery__safety-item,
  .page-lottery__faq-item,
  .page-lottery__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-lottery__container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-lottery__section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-lottery__heading {
    font-size: 28px;
  }
  .page-lottery__paragraph {
    font-size: 16px;
  }
  .page-lottery__btn-primary, .page-lottery__btn-secondary {
    font-size: 16px;
    padding: 12px 25px;
  }
}