/* style/getting-started.css */
.page-getting-started {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark background */
  background-color: #0A2239; /* Main dark background */
  line-height: 1.6;
}

.page-getting-started__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-getting-started__highlight {
  color: #E0B400; /* Accent color */
}

/* Hero Section */
.page-getting-started__hero {
  background: linear-gradient(135deg, #0A2239, #1a3a5c);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-getting-started__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1.2;
}

.page-getting-started__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #D3D3D3;
}

.page-getting-started__hero-image {
  max-width: 90%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-getting-started__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-getting-started__btn--primary {
  background-color: #E0B400; /* Accent color */
  color: #0A2239;
  border: 2px solid #E0B400;
  font-size: 1.1em;
}

.page-getting-started__btn--primary:hover {
  background-color: #ffc900;
  border-color: #ffc900;
  color: #000;
}

.page-getting-started__btn--secondary {
  background-color: transparent;
  color: #E0B400;
  border: 2px solid #E0B400;
  font-size: 0.95em;
  padding: 10px 20px;
}

.page-getting-started__btn--secondary:hover {
  background-color: #E0B400;
  color: #0A2239;
}

/* Sections */
.page-getting-started__section {
  padding: 60px 0;
}

.page-getting-started__section:nth-child(even) {
  background-color: #1a3a5c;
}

.page-getting-started__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Overview Section */
.page-getting-started__overview p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
  color: #D3D3D3;
}

/* Steps Grid */
.page-getting-started__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-getting-started__step-item {
  background-color: #1a3a5c;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-getting-started__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(80%) saturate(200%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-getting-started__step-title {
  font-size: 1.8em;
  color: #E0B400;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-getting-started__step-item p {
  color: #D3D3D3;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Why ku68 Section */
.page-getting-started__why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-getting-started__why-item {
  background-color: #0A2239;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2e4a6b;
}

.page-getting-started__why-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  filter: invert(80%) sepia(80%) saturate(200%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-getting-started__why-item h3 {
  font-size: 1.6em;
  color: #E0B400;
  margin-bottom: 10px;
}

.page-getting-started__why-item p {
  color: #D3D3D3;
  font-size: 1em;
}

.page-getting-started__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(224, 180, 0, 0.3);
}

.page-getting-started__cta-bottom p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #FFFFFF;
}

/* Responsible Gambling */
.page-getting-started__responsible-gambling {
  background-color: #1a3a5c;
}

.page-getting-started__responsible-gambling p,
.page-getting-started__responsible-gambling li {
  color: #D3D3D3;
  font-size: 1.1em;
  margin-bottom: 15px;
}

.page-getting-started__responsible-gambling ul {
  list-style-type: disc;
  padding-left: 30px;
  margin-bottom: 30px;
}

.page-getting-started__responsible-gambling strong {
  color: #E0B400;
}

.page-getting-started__info-image {
  max-width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-getting-started__faq {
  background-color: #0A2239;
}

.page-getting-started__faq-item {
  background-color: #1a3a5c;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-getting-started__faq-item h3 {
  color: #E0B400;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-getting-started__faq-item p {
  color: #D3D3D3;
  font-size: 1.05em;
}

.page-getting-started__faq-item a {
  color: #E0B400;
  text-decoration: underline;
}

.page-getting-started__faq-item a:hover {
  color: #ffc900;
}

/* Floating Promotion */
.page-getting-started__floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #E0B400;
  color: #0A2239;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.page-getting-started__floating-promo.hidden {
  transform: translateY(100px);
  opacity: 0;
}

.page-getting-started__floating-promo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #0A2239;
  font-weight: bold;
}

.page-getting-started__floating-promo-icon {
  width: 30px;
  height: 30px;
  filter: none; /* Icon should be in its original color or styled to fit */
}

.page-getting-started__floating-promo-text {
  font-size: 1.1em;
}

.page-getting-started__floating-promo-close-btn {
  background: none;
  border: none;
  color: #0A2239;
  font-size: 1.5em;
  cursor: pointer;
  padding: 0 5px;
  line-height: 1;
}

.page-getting-started__floating-promo-close-btn:hover {
  color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-getting-started__hero-title {
    font-size: 2.5em;
  }
  .page-getting-started__hero-subtitle {
    font-size: 1.2em;
  }
  .page-getting-started__section-title {
    font-size: 2em;
  }
  .page-getting-started__steps-grid,
  .page-getting-started__why-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-getting-started__hero {
    padding: 60px 0 30px;
  }
  .page-getting-started__hero-title {
    font-size: 2em;
  }
  .page-getting-started__hero-subtitle {
    font-size: 1em;
  }
  .page-getting-started__btn--primary {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-getting-started__section {
    padding: 40px 0;
  }
  .page-getting-started__section-title {
    font-size: 1.8em;
  }
  .page-getting-started__step-title {
    font-size: 1.5em;
  }
  .page-getting-started__why-item h3 {
    font-size: 1.3em;
  }
  .page-getting-started__floating-promo {
    bottom: 15px;
    right: 15px;
    padding: 8px 12px;
  }
  .page-getting-started__floating-promo-text {
    font-size: 0.9em;
  }
  .page-getting-started__floating-promo-icon {
    width: 25px;
    height: 25px;
  }
  .page-getting-started__floating-promo-close-btn {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-getting-started__hero-title {
    font-size: 1.8em;
  }
  .page-getting-started__hero-subtitle {
    font-size: 0.9em;
  }
  .page-getting-started__btn--primary {
    padding: 10px 20px;
  }
  .page-getting-started__section-title {
    font-size: 1.5em;
  }
  .page-getting-started__steps-grid,
  .page-getting-started__why-grid {
    grid-template-columns: 1fr;
  }
  .page-getting-started__floating-promo {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: calc(100% - 30px);
    justify-content: center;
  }
  .page-getting-started__floating-promo-text {
    display: none; /* Hide text on very small screens to save space */
  }
  .page-getting-started__floating-promo-icon {
    margin-right: 0;
  }
  .page-getting-started__floating-promo-close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1em;
  }
}