/* style/download-center-mobile-web.css */

/* Variables for colors */
:root {
  --page-b29-primary-color: #0A192F;
  --page-b29-secondary-color: #FFD700;
  --page-b29-text-on-dark: #FFFFFF;
  --page-b29-text-on-light: #000000; /* Darker text for contrast on gold */
  --page-b29-light-bg: #F0F2F5;
  --page-b29-dark-text-alt: #333333;
  --page-b29-border-color: rgba(255, 215, 0, 0.3);
  --page-b29-shadow-color: rgba(0, 0, 0, 0.1);
}

.page-download-center-mobile-web {
  font-family: 'Arial', sans-serif;
  color: var(--page-b29-dark-text-alt);
  line-height: 1.6;
  background-color: var(--page-b29-light-bg);
}

.page-download-center-mobile-web__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-download-center-mobile-web__section {
  padding: 60px 0;
  text-align: center;
}

.page-download-center-mobile-web__section:nth-of-type(even) {
  background-color: #e6e9ed; /* Slightly different background for visual separation */
}

.page-download-center-mobile-web__main-title,
.page-download-center-mobile-web__section-title {
  color: var(--page-b29-primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.page-download-center-mobile-web__main-title {
  font-size: 2.8em;
  line-height: 1.2;
}

.page-download-center-mobile-web__section-title {
  font-size: 2.2em;
}

.page-download-center-mobile-web__subtitle,
.page-download-center-mobile-web__section-description {
  font-size: 1.1em;
  color: var(--page-b29-dark-text-alt);
  margin-bottom: 30px;
}

/* Hero Section */
.page-download-center-mobile-web__hero-section {
  background: linear-gradient(135deg, var(--page-b29-primary-color) 0%, #1a3a60 100%);
  padding: 80px 0;
  color: var(--page-b29-text-on-dark);
  text-align: left;
}

.page-download-center-mobile-web__hero-content {
  max-width: 600px;
  margin-right: 40px;
}

.page-download-center-mobile-web__hero-section .page-download-center-mobile-web__main-title,
.page-download-center-mobile-web__hero-section .page-download-center-mobile-web__subtitle {
  color: var(--page-b29-text-on-dark);
}

.page-download-center-mobile-web__hero-image-wrapper {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-download-center-mobile-web__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px var(--page-b29-shadow-color);
}

/* CTA Buttons */
.page-download-center-mobile-web__cta-button {
  display: inline-block;
  background-color: var(--page-b29-secondary-color);
  color: var(--page-b29-text-on-light);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-download-center-mobile-web__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-download-center-mobile-web__cta-button--secondary {
  background-color: var(--page-b29-primary-color);
  color: var(--page-b29-text-on-dark);
  box-shadow: 0 5px 15px rgba(10, 25, 47, 0.4);
}

.page-download-center-mobile-web__cta-button--secondary:hover {
  background-color: #1a3a60;
  transform: translateY(-3px);
}

.page-download-center-mobile-web__inline-cta {
  display: inline-block;
  color: var(--page-b29-secondary-color);
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  border-bottom: 2px solid var(--page-b29-secondary-color);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-download-center-mobile-web__inline-cta:hover {
  color: #e6c200;
  border-color: #e6c200;
}

/* Features Grid */
.page-download-center-mobile-web__features-grid,
.page-download-center-mobile-web__game-categories,
.page-download-center-mobile-web__promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-download-center-mobile-web__feature-item,
.page-download-center-mobile-web__game-item,
.page-download-center-mobile-web__promo-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--page-b29-shadow-color);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-mobile-web__feature-item:hover,
.page-download-center-mobile-web__game-item:hover,
.page-download-center-mobile-web__promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-download-center-mobile-web__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-download-center-mobile-web__feature-title,
.page-download-center-mobile-web__game-title,
.page-download-center-mobile-web__promo-title,
.page-download-center-mobile-web__guide-title,
.page-download-center-mobile-web__step-title {
  font-size: 1.4em;
  color: var(--page-b29-primary-color);
  margin-bottom: 15px;
}

.page-download-center-mobile-web__feature-text,
.page-download-center-mobile-web__game-text,
.page-download-center-mobile-web__promo-text,
.page-download-center-mobile-web__guide-text,
.page-download-center-mobile-web__step-text {
  font-size: 1em;
  color: var(--page-b29-dark-text-alt);
}

/* Access Steps */
.page-download-center-mobile-web__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-download-center-mobile-web__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--page-b29-shadow-color);
  text-align: left;
  position: relative;
  padding-top: 80px;
}

.page-download-center-mobile-web__step-number {
  position: absolute;
  top: 20px;
  left: 30px;
  background-color: var(--page-b29-secondary-color);
  color: var(--page-b29-text-on-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.5);
}

/* Games Section */
.page-download-center-mobile-web__game-image,
.page-download-center-mobile-web__promo-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-download-center-mobile-web__cta-wrapper {
  margin-top: 50px;
}

/* Promotions Section */
.page-download-center-mobile-web__promo-link {
  display: inline-block;
  background-color: var(--page-b29-primary-color);
  color: var(--page-b29-text-on-dark);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-download-center-mobile-web__promo-link:hover {
  background-color: #1a3a60;
}

/* Guide Section */
.page-download-center-mobile-web__guide-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-download-center-mobile-web__guide-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--page-b29-shadow-color);
  text-align: left;
}

/* Support Section */
.page-download-center-mobile-web__support-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-download-center-mobile-web__support-image {
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--page-b29-shadow-color);
}

.page-download-center-mobile-web__support-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-download-center-mobile-web__support-text p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--page-b29-dark-text-alt);
}

/* Conclusion Section */
.page-download-center-mobile-web__conclusion .page-download-center-mobile-web__cta-button {
  margin-top: 40px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-download-center-mobile-web__hero-section .page-download-center-mobile-web__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .page-download-center-mobile-web__hero-content {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .page-download-center-mobile-web__main-title {
    font-size: 2em;
  }
  .page-download-center-mobile-web__section-title {
    font-size: 1.8em;
  }
  .page-download-center-mobile-web__hero-section {
    padding: 60px 0;
  }
  .page-download-center-mobile-web__hero-content {
    margin-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .page-download-center-mobile-web__hero-section .page-download-center-mobile-web__cta-button {
    margin-top: 20px;
  }
  .page-download-center-mobile-web__support-content {
    flex-direction: column;
  }
  .page-download-center-mobile-web__support-text {
    text-align: center;
  }
  .page-download-center-mobile-web__support-image {
    margin-bottom: 30px;
  }
  .page-download-center-mobile-web__step-item {
    padding-top: 30px;
    text-align: center;
  }
  .page-download-center-mobile-web__step-number {
    position: static;
    margin: 0 auto 20px auto;
  }
}

@media (max-width: 480px) {
  .page-download-center-mobile-web__main-title {
    font-size: 1.8em;
  }
  .page-download-center-mobile-web__section-title {
    font-size: 1.6em;
  }
  .page-download-center-mobile-web__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-download-center-mobile-web__features-grid,
  .page-download-center-mobile-web__game-categories,
  .page-download-center-mobile-web__promos-grid,
  .page-download-center-mobile-web__steps-grid,
  .page-download-center-mobile-web__guide-items {
    grid-template-columns: 1fr;
  }
}