/* style/lottery.css */

/* 🚨 Cần điều chỉnh padding-top cho main nếu không có HERO, nhưng vì có HERO nên sẽ không cần thiết cho main trực tiếp */
/* Tuy nhiên, nếu shared-header có position: fixed, main cần một khoảng cách để nội dung không bị che */
.page-lottery {
  color: #ffffff; /* Body background is dark, so text should be light */
  background-color: var(--dark-bg-1); /* Assuming --dark-bg-1 is a dark color */
}

/* 🚨 HERO主图区域样式（必须严格遵守） */
.page-lottery__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin-top: 0; /* HERO is at the very top */
}

.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轮播区域样式（必须严格遵守） */
.page-lottery__logo-carousel-section {
  width: 100%;
  padding: 40px 20px;
  background: var(--dark-bg-2); /* Slightly different dark background for distinction */
  box-shadow: inset 0 5px 10px rgba(0,0,0,0.2);
}

.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; /* 禁止用户交互 */
}

/* 🚨 必须隐藏滚动条（Chrome, Safari, Opera） */
.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: #ffffff; /* Light background for logos */
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto; /* Re-enable pointer events for the link inside */
}

.page-lottery__logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-lottery__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
  box-sizing: border-box;
  pointer-events: auto;
}

.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;
  }
}

/* 🚨 游戏展示区域样式（必须严格遵守） */
.page-lottery__games-section {
  width: 100%;
  padding: 60px 20px;
  background: var(--dark-bg-1);
}

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

.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: #FFCC00; /* Vàng hổ phách */
  text-align: left;
  text-shadow: 0 0 5px rgba(255,204,0,0.5);
}

.page-lottery__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05); /* Semi-transparent white for dark background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery__featured-game:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.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: flex-start;
}

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

.page-lottery__games-tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #FFCC00; /* Màu vàng phụ đạo */
  transition: width 0.3s ease;
}

.page-lottery__games-tab:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.page-lottery__games-tab.active {
  color: #FFCC00; /* Vàng hổ phách */
}

.page-lottery__games-tab.active::after {
  width: 100%;
}

.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: rgba(255, 255, 255, 0.05); /* Semi-transparent white for dark background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px 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 5px 15px rgba(0, 0, 0, 0.3);
}

.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: 500;
  margin: 10px 0 15px 0;
  padding: 0 10px;
  color: #ffffff; /* Light text for dark background */
  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);
  }
}

@media (max-width: 768px) {
  .page-lottery__games-section {
    padding: 40px 15px;
  }
  
  .page-lottery__games-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .page-lottery__featured-game-title {
    font-size: 24px;
  }
  
  .page-lottery__featured-game-image {
    height: 300px;
  }
  
  .page-lottery__games-tabs {
    gap: 15px;
    justify-content: center;
  }
  
  .page-lottery__games-tab {
    font-size: 18px;
  }
  
  .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: 14px;
    margin: 8px 0 12px 0;
    padding: 0 5px;
  }
}

/* General Section Styles */
.page-lottery__section {
  padding: 60px 20px;
  background-color: var(--dark-bg-1);
}

.page-lottery__section--intro {
  padding-top: 80px; /* Adjust for header if needed, but hero covers it */
}

.page-lottery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-lottery__heading {
  font-size: 36px;
  font-weight: bold;
  color: #FFCC00; /* Vàng hổ phách */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-lottery__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #003366; /* Xanh navy */
  border-radius: 2px;
}

.page-lottery__paragraph {
  font-size: 18px;
  line-height: 1.8;
  color: #f0f0f0; /* Light text for dark background */
  text-align: center;
  margin-bottom: 40px;
}

.page-lottery__highlight {
  color: #FFCC00;
  font-weight: bold;
}

.page-lottery__intro-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  text-align: center;
}

.page-lottery__feature-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-lottery__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-lottery__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFCC0050); /* Subtle glow */
}

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

.page-lottery__feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
}

.page-lottery__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-lottery__cta-buttons--center {
  margin-top: 40px;
}

.page-lottery__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.page-lottery__btn--primary {
  background: #FFCC00; /* Vàng hổ phách */
  color: #003366; /* Xanh navy */
  border-color: #FFCC00;
}

.page-lottery__btn--primary:hover {
  background: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,204,0,0.4);
}

.page-lottery__btn--secondary {
  background: none;
  color: #FFCC00; /* Vàng hổ phách */
  border-color: #FFCC00;
}

.page-lottery__btn--secondary:hover {
  background: rgba(255,204,0,0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,204,0,0.2);
}

.page-lottery__link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  text-align: center;
}

.page-lottery__quick-link-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-lottery__quick-link-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-lottery__quick-link-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 3px #FFCC0050);
}

.page-lottery__quick-link-title {
  font-size: 20px;
  font-weight: 600;
  color: #FFCC00;
  margin: 0;
}

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

.page-lottery__game-category-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-lottery__game-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-lottery__game-category-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  filter: drop-shadow(0 0 5px #FFCC0050);
}

.page-lottery__game-category-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-lottery__game-category-description {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 25px;
}

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

.page-lottery__promo-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-lottery__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-lottery__promo-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  filter: drop-shadow(0 0 5px #00336650);
}

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

.page-lottery__promo-description {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 25px;
}

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

.page-lottery__info-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-lottery__info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-lottery__info-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  filter: drop-shadow(0 0 5px #00336650);
}

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

.page-lottery__info-description {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
}

/* FAQ Section */
.page-lottery__section--faq {
  background-color: var(--dark-bg-2);
}

.page-lottery__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-lottery__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.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: #cccccc;
  font-size: 16px;
  line-height: 1.7;
}

.page-lottery__faq-item.active .page-lottery__faq-answer {
  max-height: 2000px !important; /* 🚨 Sử dụng !important và giá trị lớn */
  padding: 20px !important;
  opacity: 1;
  background: rgba(0, 51, 102, 0.8); /* Màu nền xanh đậm hơn cho câu trả lời */
  border-radius: 0 0 8px 8px;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
}

.page-lottery__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #003366; /* Xanh navy */
  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: #004488;
}

.page-lottery__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

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

.page-lottery__faq-item.active .page-lottery__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .page-lottery__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-lottery__faq-question h3 {
    font-size: 16px;
    margin-bottom: 0;
    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-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-lottery__blog-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  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(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

.page-lottery__blog-content {
  padding: 25px;
}

.page-lottery__blog-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-lottery__blog-title a {
  color: #FFCC00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-lottery__blog-title a:hover {
  color: #ffffff;
}

.page-lottery__blog-summary {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.page-lottery__blog-date {
  font-size: 14px;
  color: #999999;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-lottery__heading {
    font-size: 32px;
  }
  .page-lottery__paragraph {
    font-size: 17px;
  }
  .page-lottery__feature-item, .page-lottery__quick-link-card, .page-lottery__game-category-card, .page-lottery__promo-card, .page-lottery__info-card {
    padding: 25px;
  }
  .page-lottery__feature-icon, .page-lottery__quick-link-icon, .page-lottery__game-category-image, .page-lottery__promo-image, .page-lottery__info-icon {
    width: 80px;
    height: 80px;
  }
  .page-lottery__feature-title, .page-lottery__quick-link-title, .page-lottery__game-category-title, .page-lottery__promo-title, .page-lottery__info-title {
    font-size: 20px;
  }
  .page-lottery__feature-description, .page-lottery__game-category-description, .page-lottery__promo-description, .page-lottery__info-description {
    font-size: 15px;
  }
  .page-lottery__btn {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-lottery__blog-image {
    height: 180px;
  }
  .page-lottery__blog-title {
    font-size: 20px;
  }
  .page-lottery__blog-summary {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-lottery__section {
    padding: 40px 15px;
  }
  .page-lottery__heading {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .page-lottery__paragraph {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-lottery__intro-features, .page-lottery__link-grid, .page-lottery__game-categories, .page-lottery__promo-grid, .page-lottery__info-grid, .page-lottery__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-lottery__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-lottery__btn {
    width: 100%;
  }
  .page-lottery__quick-link-icon {
    width: 60px;
    height: 60px;
  }
  .page-lottery__blog-image {
    height: 150px;
  }
  .page-lottery__blog-title {
    font-size: 18px;
  }
  .page-lottery__blog-summary {
    font-size: 14px;
  }
  /* 🚨 移动端强制适配所有图片容器和图片，防止横向滚动条 */
  .page-lottery img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-lottery__section,
  .page-lottery__card,
  .page-lottery__container,
  .page-lottery__hero-section,
  .page-lottery__logo-carousel-section,
  .page-lottery__games-section,
  .page-lottery__faq-list,
  .page-lottery__blog-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-lottery__logo-carousel-container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-lottery__hero-section {
    padding-top: 0; /* Hero is at the top, no padding needed for fixed header here */
  }
}

@media (max-width: 480px) {
  .page-lottery__heading {
    font-size: 24px;
  }
  .page-lottery__paragraph {
    font-size: 15px;
  }
  .page-lottery__feature-title, .page-lottery__quick-link-title, .page-lottery__game-category-title, .page-lottery__promo-title, .page-lottery__info-title {
    font-size: 18px;
  }
  .page-lottery__feature-description, .page-lottery__game-category-description, .page-lottery__promo-description, .page-lottery__info-description {
    font-size: 14px;
  }
  .page-lottery__btn {
    font-size: 15px;
    padding: 10px 20px;
  }
  .page-lottery__blog-title {
    font-size: 16px;
  }
  .page-lottery__blog-summary {
    font-size: 13px;
  }
}