.page-index-app-convenience {
  font-family: 'Arial', sans-serif;
  color: #e5e5d1; /* Light text for dark background */
  background-color: #1A1A2E;
}

.page-index-app-convenience__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-app-convenience__section {
  padding: 80px 0;
  text-align: center;
}

.page-index-app-convenience__hero-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #301934 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-index-app-convenience__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #e5e5d1;
}

.page-index-app-convenience__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #cccccc;
}

.page-index-app-convenience__highlight {
  color: #E94560;
}

.page-index-app-convenience__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-index-app-convenience__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-index-app-convenience__button--primary {
  background-color: #E94560;
  color: #FFFFFF;
  border: 2px solid #E94560;
}

.page-index-app-convenience__button--primary:hover {
  background-color: #d13a52;
  transform: translateY(-2px);
}

.page-index-app-convenience__button--secondary {
  background-color: transparent;
  color: #E94560;
  border: 2px solid #E94560;
}

.page-index-app-convenience__button--secondary:hover {
  background-color: #E94560;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-index-app-convenience__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
  border-radius: 5px;
}

.page-index-app-convenience__button--text-link {
  background: none;
  border: none;
  color: #E94560;
  text-decoration: underline;
  padding: 0;
  font-size: 1em;
  margin-left: 10px;
}

.page-index-app-convenience__button--text-link:hover {
  color: #d13a52;
  text-decoration: none;
  transform: none;
}

.page-index-app-convenience__hero-image {
  max-width: 600px;
  height: auto;
  margin-top: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index-app-convenience__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #e5e5d1;
}

.page-index-app-convenience__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #cccccc;
}

.page-index-app-convenience__features-section {
  background-color: #11111c;
}

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

.page-index-app-convenience__feature-item {
  background-color: #1A1A2E;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-app-convenience__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-app-convenience__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #E94560;
}

.page-index-app-convenience__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
}

.page-index-app-convenience__game-variety-section {
  background-color: #1A1A2E;
}

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

.page-index-app-convenience__game-item {
  background-color: #11111c;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-index-app-convenience__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.page-index-app-convenience__game-title {
  font-size: 1.4em;
  margin: 15px 20px 10px;
  color: #E94560;
}

.page-index-app-convenience__game-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: #cccccc;
  padding: 0 20px 20px;
}

.page-index-app-convenience__cta-game-section {
  margin-top: 60px;
}

.page-index-app-convenience__how-to-start-section {
  background-color: #11111c;
}

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

.page-index-app-convenience__step-item {
  background-color: #1A1A2E;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-app-convenience__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #E94560;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-index-app-convenience__step-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #e5e5d1;
}

.page-index-app-convenience__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  flex-grow: 1;
}

.page-index-app-convenience__security-support-section {
  background-color: #1A1A2E;
}

.page-index-app-convenience__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-index-app-convenience__text-content {
  flex: 1;
  min-width: 300px;
}

.page-index-app-convenience__security-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-app-convenience__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-index-app-convenience__security-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
  color: #cccccc;
}

.page-index-app-convenience__security-list li::before {
  content: '✔';
  color: #E94560;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index-app-convenience__final-cta-section {
  background-color: #11111c;
  padding-bottom: 100px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-app-convenience__main-title {
    font-size: 2.8em;
  }
  .page-index-app-convenience__section-title {
    font-size: 2em;
  }
  .page-index-app-convenience__hero-image {
    max-width: 100%;
  }
  .page-index-app-convenience__content-wrapper {
    flex-direction: column;
  }
  .page-index-app-convenience__text-content, .page-index-app-convenience__security-image {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-index-app-convenience__main-title {
    font-size: 2.2em;
  }
  .page-index-app-convenience__subtitle {
    font-size: 1.1em;
  }
  .page-index-app-convenience__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-app-convenience__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-index-app-convenience__section-title {
    font-size: 1.8em;
  }
  .page-index-app-convenience__section-description {
    font-size: 1em;
  }
  .page-index-app-convenience__feature-grid, .page-index-app-convenience__game-grid, .page-index-app-convenience__step-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-app-convenience__main-title {
    font-size: 1.8em;
  }
  .page-index-app-convenience__subtitle {
    font-size: 0.95em;
  }
  .page-index-app-convenience__section-title {
    font-size: 1.5em;
  }
  .page-index-app-convenience__button {
    width: 100%;
  }
  .page-index-app-convenience__section {
    padding: 60px 0;
  }
  .page-index-app-convenience__hero-section {
    padding: 80px 0 40px;
  }
}