/* style/index-banner-ad-1.css */
.page-index-banner-ad-1 {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Default text color for dark backgrounds */
  background-color: #0A192F; /* Main background color */
}

.page-index-banner-ad-1__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-banner-ad-1__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #0A192F 0%, #1a2a47 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-banner-ad-1__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-banner-ad-1__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-index-banner-ad-1__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for main title */
}

.page-index-banner-ad-1__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-index-banner-ad-1__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-banner-ad-1__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-index-banner-ad-1__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-index-banner-ad-1__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-banner-ad-1__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-banner-ad-1__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-index-banner-ad-1__hero-image-wrapper {
  max-width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.page-index-banner-ad-1__hero-image {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-banner-ad-1__section-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: #FFD700;
}

.page-index-banner-ad-1__section-description {
  font-size: 1.2em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #E0E0E0;
}

.page-index-banner-ad-1__features-section {
  padding: 80px 0;
  background-color: #0A192F;
}

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

.page-index-banner-ad-1__feature-item {
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index-banner-ad-1__feature-item:hover {
  transform: translateY(-5px);
}

.page-index-banner-ad-1__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-banner-ad-1__feature-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-index-banner-ad-1__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #CCCCCC;
}

.page-index-banner-ad-1__promotion-section {
  padding: 80px 0;
  background-color: #0A192F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.page-index-banner-ad-1__promotion-section .page-index-banner-ad-1__container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-index-banner-ad-1__promotion-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-index-banner-ad-1__promotion-content .page-index-banner-ad-1__section-title,
.page-index-banner-ad-1__promotion-content .page-index-banner-ad-1__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-index-banner-ad-1__promotion-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.page-index-banner-ad-1__promotion-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-banner-ad-1__app-download-section {
  padding: 80px 0;
  background-color: #1a2a47;
}

.page-index-banner-ad-1__app-download-section .page-index-banner-ad-1__container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap-reverse;
  justify-content: center;
}

.page-index-banner-ad-1__app-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-index-banner-ad-1__app-content .page-index-banner-ad-1__section-title,
.page-index-banner-ad-1__app-content .page-index-banner-ad-1__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-index-banner-ad-1__app-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-index-banner-ad-1__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.page-index-banner-ad-1__app-image {
  max-width: 80%;
  height: auto;
}

.page-index-banner-ad-1__game-categories {
  padding: 80px 0;
  background-color: #0A192F;
}

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

.page-index-banner-ad-1__category-item {
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index-banner-ad-1__category-item:hover {
  transform: translateY(-5px);
}

.page-index-banner-ad-1__category-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-banner-ad-1__category-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-index-banner-ad-1__category-text {
  font-size: 1em;
  line-height: 1.6;
  color: #CCCCCC;
  margin-bottom: 20px;
}

.page-index-banner-ad-1__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-banner-ad-1__about-section {
  padding: 80px 0;
  background-color: #1a2a47;
}

.page-index-banner-ad-1__about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.page-index-banner-ad-1__about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.page-index-banner-ad-1__about-text p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-index-banner-ad-1__cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%);
  text-align: center;
  color: #0A192F;
}

.page-index-banner-ad-1__cta-title {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #0A192F; /* Dark blue for CTA title */
}

.page-index-banner-ad-1__cta-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-index-banner-ad-1__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-banner-ad-1__cta-buttons .page-index-banner-ad-1__btn--primary {
  background-color: #0A192F;
  color: #FFD700;
  border-color: #0A192F;
}

.page-index-banner-ad-1__cta-buttons .page-index-banner-ad-1__btn--primary:hover {
  background-color: #1a2a47;
  border-color: #1a2a47;
}

.page-index-banner-ad-1__cta-buttons .page-index-banner-ad-1__btn--secondary {
  background-color: transparent;
  color: #0A192F;
  border-color: #0A192F;
}

.page-index-banner-ad-1__cta-buttons .page-index-banner-ad-1__btn--secondary:hover {
  background-color: #0A192F;
  color: #FFD700;
}

.page-index-banner-ad-1 .highlight {
  color: #FFD700;
}

.page-index-banner-ad-1__cta-section .highlight {
  color: #0A192F;
}

@media (min-width: 768px) {
  .page-index-banner-ad-1__hero-section {
    flex-direction: row;
    text-align: left;
    padding: 100px 0;
  }

  .page-index-banner-ad-1__hero-content {
    margin-bottom: 0;
    margin-right: 40px;
    flex: 1;
  }

  .page-index-banner-ad-1__hero-buttons {
    justify-content: flex-start;
  }

  .page-index-banner-ad-1__hero-image-wrapper {
    flex: 1;
    margin-top: 0;
    justify-content: flex-end;
  }

  .page-index-banner-ad-1__hero-image {
    max-width: 100%;
  }

  .page-index-banner-ad-1__hero-title {
    font-size: 4.5em;
  }

  .page-index-banner-ad-1__section-title {
    font-size: 3em;
  }

  .page-index-banner-ad-1__promotion-section .page-index-banner-ad-1__container,
  .page-index-banner-ad-1__app-download-section .page-index-banner-ad-1__container {
    flex-wrap: nowrap;
  }

  .page-index-banner-ad-1__promotion-content,
  .page-index-banner-ad-1__app-content {
    text-align: left;
  }

  .page-index-banner-ad-1__about-content {
    flex-direction: row;
    align-items: center;
  }

  .page-index-banner-ad-1__about-image {
    margin-right: 40px;
    max-width: 50%;
    margin-bottom: 0;
  }

  .page-index-banner-ad-1__cta-title {
    font-size: 4em;
  }
}

@media (max-width: 767px) {
  .page-index-banner-ad-1__hero-title {
    font-size: 2.5em;
  }
  .page-index-banner-ad-1__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-banner-ad-1__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-banner-ad-1__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-index-banner-ad-1__section-title {
    font-size: 2em;
  }
  .page-index-banner-ad-1__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-index-banner-ad-1__promotion-section .page-index-banner-ad-1__container,
  .page-index-banner-ad-1__app-download-section .page-index-banner-ad-1__container {
    flex-direction: column;
  }
  .page-index-banner-ad-1__promotion-content,
  .page-index-banner-ad-1__app-content {
    text-align: center;
  }
  .page-index-banner-ad-1__promotion-content .page-index-banner-ad-1__section-title,
  .page-index-banner-ad-1__promotion-content .page-index-banner-ad-1__section-description,
  .page-index-banner-ad-1__app-content .page-index-banner-ad-1__section-title,
  .page-index-banner-ad-1__app-content .page-index-banner-ad-1__section-description {
    text-align: center;
  }
  .page-index-banner-ad-1__app-buttons {
    justify-content: center;
  }
  .page-index-banner-ad-1__about-content {
    flex-direction: column;
    align-items: center;
  }
  .page-index-banner-ad-1__about-image {
    margin-bottom: 30px;
  }
  .page-index-banner-ad-1__about-text p {
    text-align: left;
  }
  .page-index-banner-ad-1__cta-title {
    font-size: 2.5em;
  }
  .page-index-banner-ad-1__cta-description {
    font-size: 1.1em;
  }
  .page-index-banner-ad-1__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}