/* style/live.css */

.page-live {
    color: #ffffff; /* Light text for dark body background */
    padding-top: var(--header-offset, 120px);
}

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

.page-live__hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px; /* Ensure hero section has a minimum height */
}

.page-live__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.page-live__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    padding: 40px;
    border-radius: 10px;
}

.page-live__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FCBC45;
    line-height: 1.2;
}

.page-live__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-live__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.page-live__btn--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-live__btn--register:hover {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.page-live__btn--login {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-live__btn--login:hover {
    background-color: transparent;
    color: #FCBC45;
    border-color: #FCBC45;
}

.page-live__section-title {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 40px;
    color: #FCBC45;
    position: relative;
    padding-bottom: 15px;
}

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

.page-live__section-intro {
    font-size: 1.2em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
    color: #f0f0f0;
}

.page-live__why-choose-section,
.page-live__game-explore-section,
.page-live__bonuses-section,
.page-live__getting-started-section,
.page-live__mobile-section,
.page-live__safety-support-section,
.page-live__faq-section,
.page-live__cta-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    margin-bottom: 20px; /* Add margin between sections */
    border-radius: 10px;
}

.page-live__why-choose-section {
  background-color: #0d0d0d;
}

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

.page-live__feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-live__feature-card:hover {
    transform: translateY(-10px);
}

.page-live__feature-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-live__card-title {
    font-size: 1.8em;
    color: #FCBC45;
    margin-bottom: 15px;
}

.page-live__card-text {
    font-size: 1em;
    color: #cccccc;
}

.page-live__game-category {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.page-live__game-category-title {
    font-size: 2.2em;
    color: #FCBC45;
    margin-bottom: 20px;
}

.page-live__game-category-description {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 30px;
}

.page-live__game-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-live__btn--play,
.page-live__btn--claim,
.page-live__btn--step,
.page-live__btn--download,
.page-live__btn--responsible,
.page-live__btn--support,
.page-live__btn--join-now {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    padding: 12px 25px;
    font-size: 1em;
}

.page-live__btn--play:hover,
.page-live__btn--claim:hover,
.page-live__btn--step:hover,
.page-live__btn--download:hover,
.page-live__btn--support:hover,
.page-live__btn--join-now:hover {
    background-color: transparent;
    color: #FCBC45;
    border-color: #FCBC45;
}

.page-live__btn--responsible {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-live__btn--responsible:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.page-live__all-games-cta {
    text-align: center;
    margin-top: 20px;
}

.page-live__btn--view-all {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-live__btn--view-all:hover {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.page-live__bonuses-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-live__bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-live__bonus-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.page-live__bonus-card .page-live__card-title {
    font-size: 1.6em;
}

.page-live__bonus-card .page-live__card-text {
    margin-bottom: 20px;
}

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

.page-live__step-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.page-live__step-card .page-live__card-title {
    font-size: 1.6em;
}

.page-live__step-card .page-live__card-text {
    margin-bottom: 20px;
}

.page-live__mobile-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-live__mobile-content {
    flex: 1;
    min-width: 300px;
}

.page-live__mobile-image {
    flex: 1;
    min-width: 300px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-live__support-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-live__support-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-live__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-live__faq-question {
    font-size: 1.4em;
    color: #FCBC45;
    margin-bottom: 10px;
}

.page-live__faq-answer {
    font-size: 1.05em;
    color: #cccccc;
    line-height: 1.6;
}

.page-live__cta-section {
    text-align: center;
}

.page-live__btn--join-now {
    padding: 18px 40px;
    font-size: 1.2em;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-live__hero-title {
        font-size: 3em;
    }
    .page-live__section-title {
        font-size: 2.5em;
    }
    .page-live__hero-content {
      padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-live__hero-title {
        font-size: 2.2em;
    }
    .page-live__hero-description {
        font-size: 1.1em;
    }
    .page-live__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-live__btn {
        width: 100%;
        max-width: 280px;
    }
    .page-live__section-title {
        font-size: 2em;
    }
    .page-live__section-intro {
        font-size: 1em;
    }
    .page-live__why-choose-section,
    .page-live__game-explore-section,
    .page-live__bonuses-section,
    .page-live__getting-started-section,
    .page-live__mobile-section,
    .page-live__safety-support-section,
    .page-live__faq-section,
    .page-live__cta-section {
        padding: 60px 0;
    }
    .page-live__feature-image, 
    .page-live__game-image, 
    .page-live__bonuses-image, 
    .page-live__mobile-image, 
    .page-live__support-image {
        max-width: 100%;
        height: auto; /* Ensure images scale correctly */
    }
    .page-live__mobile-flex {
      flex-direction: column;
    }
    .page-live__support-actions {
      flex-direction: column;
      align-items: center;
    }
    .page-live__btn--responsible, .page-live__btn--support {
      width: 100%;
      max-width: 280px;
    }
    /* Ensure all content area images are responsive and do not overflow */
    .page-live img {
      max-width: 100%;
      height: auto;
    }
}

@media (max-width: 480px) {
    .page-live__hero-title {
        font-size: 1.8em;
    }
    .page-live__hero-content {
      padding: 20px;
    }
    .page-live__section-title {
        font-size: 1.6em;
    }
    .page-live__card-title {
      font-size: 1.4em;
    }
    .page-live__game-category-title {
      font-size: 1.8em;
    }
    .page-live__faq-question {
      font-size: 1.2em;
    }
}