/* style/getting-started-game-selection-tips.css */
.page-getting-started-game-selection-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #F8F8F8;
}

.page-getting-started-game-selection-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-getting-started-game-selection-tips__hero {
  background: linear-gradient(135deg, #0A2239, #2A4A6A);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-getting-started-game-selection-tips__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-getting-started-game-selection-tips__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E0B400; /* Secondary color for emphasis */
  line-height: 1.2;
  font-weight: bold;
}

.page-getting-started-game-selection-tips__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #D3D3D3;
}

.page-getting-started-game-selection-tips__hero-button {
  display: inline-block;
  background-color: #E0B400; /* Secondary color for button */
  color: #0A2239;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-getting-started-game-selection-tips__hero-button:hover {
  background-color: #FFC91C;
  transform: translateY(-2px);
}

.page-getting-started-game-selection-tips__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
}

.page-getting-started-game-selection-tips__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-getting-started-game-selection-tips__section {
  padding: 60px 0;
}

.page-getting-started-game-selection-tips__section--alt {
  background-color: #F0F2F5;
}

.page-getting-started-game-selection-tips__section-title {
  font-size: 2.5em;
  color: #0A2239;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-getting-started-game-selection-tips__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E0B400;
  border-radius: 2px;
}

.page-getting-started-game-selection-tips__text {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.page-getting-started-game-selection-tips__text strong {
  color: #0A2239;
}

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

.page-getting-started-game-selection-tips__feature-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-getting-started-game-selection-tips__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-getting-started-game-selection-tips__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-getting-started-game-selection-tips__feature-title {
  font-size: 1.6em;
  color: #0A2239;
  margin-bottom: 15px;
}

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

.page-getting-started-game-selection-tips__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-getting-started-game-selection-tips__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-getting-started-game-selection-tips__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-getting-started-game-selection-tips__game-title {
  font-size: 1.5em;
  color: #0A2239;
  padding: 20px 20px 10px;
}

.page-getting-started-game-selection-tips__game-description {
  font-size: 1em;
  color: #555;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-getting-started-game-selection-tips__game-button {
  display: block;
  background-color: #E0B400;
  color: #0A2239;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0 0 12px 12px;
  transition: background-color 0.3s ease;
}

.page-getting-started-game-selection-tips__game-button:hover {
  background-color: #FFC91C;
}

.page-getting-started-game-selection-tips__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-getting-started-game-selection-tips__list li {
  background-color: #FFFFFF;
  border-left: 5px solid #E0B400;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: #333;
}

.page-getting-started-game-selection-tips__list li strong {
  color: #0A2239;
}

.page-getting-started-game-selection-tips__cta-banner {
  display: flex;
  align-items: center;
  background-color: #0A2239;
  border-radius: 12px;
  margin-top: 60px;
  padding: 30px;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  flex-wrap: wrap;
}

.page-getting-started-game-selection-tips__cta-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-right: 30px;
  flex-shrink: 0;
}

.page-getting-started-game-selection-tips__cta-content {
  flex-grow: 1;
}

.page-getting-started-game-selection-tips__cta-title {
  font-size: 2em;
  color: #E0B400;
  margin-bottom: 10px;
}

.page-getting-started-game-selection-tips__cta-description {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #D3D3D3;
}

.page-getting-started-game-selection-tips__cta-button {
  display: inline-block;
  background-color: #E0B400;
  color: #0A2239;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-getting-started-game-selection-tips__cta-button:hover {
  background-color: #FFC91C;
  transform: translateY(-2px);
}

.page-getting-started-game-selection-tips__signup-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-getting-started-game-selection-tips__signup-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-getting-started-game-selection-tips__signup-button {
  display: inline-block;
  background-color: #E0B400;
  color: #0A2239;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-getting-started-game-selection-tips__signup-button:hover {
  background-color: #FFC91C;
  transform: translateY(-3px);
}

/* Floating Ad Styling */
.page-getting-started-game-selection-tips__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background-color: #0A2239;
  color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}

.page-getting-started-game-selection-tips__floating-ad.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-getting-started-game-selection-tips__floating-ad-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #E0B400;
  font-size: 1.5em;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.page-getting-started-game-selection-tips__floating-ad-close:hover {
  color: #FFC91C;
}

.page-getting-started-game-selection-tips__floating-ad-title {
  font-size: 1.5em;
  color: #E0B400;
  margin-bottom: 5px;
  text-align: center;
}

.page-getting-started-game-selection-tips__floating-ad-text {
  font-size: 0.95em;
  color: #D3D3D3;
  text-align: center;
  margin-bottom: 15px;
}

.page-getting-started-game-selection-tips__floating-ad-button {
  display: inline-block;
  background-color: #E0B400;
  color: #0A2239;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-getting-started-game-selection-tips__floating-ad-button:hover {
  background-color: #FFC91C;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-getting-started-game-selection-tips__hero {
    padding: 60px 0;
    flex-direction: column;
  }

  .page-getting-started-game-selection-tips__hero-title {
    font-size: 2.5em;
  }

  .page-getting-started-game-selection-tips__hero-subtitle {
    font-size: 1.1em;
  }

  .page-getting-started-game-selection-tips__section-title {
    font-size: 2em;
  }

  .page-getting-started-game-selection-tips__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-getting-started-game-selection-tips__game-grid {
    grid-template-columns: 1fr;
  }

  .page-getting-started-game-selection-tips__cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .page-getting-started-game-selection-tips__cta-image {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .page-getting-started-game-selection-tips__floating-ad {
    width: 280px;
    right: 10px;
    bottom: 10px;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .page-getting-started-game-selection-tips__hero {
    padding: 40px 0;
  }

  .page-getting-started-game-selection-tips__hero-title {
    font-size: 2em;
  }

  .page-getting-started-game-selection-tips__hero-subtitle {
    font-size: 1em;
  }

  .page-getting-started-game-selection-tips__section {
    padding: 40px 0;
  }

  .page-getting-started-game-selection-tips__section-title {
    font-size: 1.8em;
  }

  .page-getting-started-game-selection-tips__text,
  .page-getting-started-game-selection-tips__list li,
  .page-getting-started-game-selection-tips__game-description {
    font-size: 0.95em;
  }

  .page-getting-started-game-selection-tips__cta-title {
    font-size: 1.6em;
  }

  .page-getting-started-game-selection-tips__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-getting-started-game-selection-tips__hero-button,
  .page-getting-started-game-selection-tips__cta-button,
  .page-getting-started-game-selection-tips__signup-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-getting-started-game-selection-tips__floating-ad {
    width: 90%;
    left: 5%;
    right: 5%;
  }
}