.page-index {
    color: #333333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px);
}

.page-index__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: center;
    background-color: #000000;
}

.page-index__hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-index__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
}

.page-index__hero-content {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.page-index__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FCBC45;
}

.page-index__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

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

.page-index__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1.1em;
    min-width: 150px;
    text-align: center;
}

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

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

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

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

.page-index__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index__section-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-index__game-categories,
.page-index__promotions-section,
.page-index__why-choose-us,
.page-index__deep-content,
.page-index__detail-pages {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-index__categories-grid,
.page-index__features-grid,
.page-index__detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index__category-card,
.page-index__feature-item,
.page-index__detail-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index__category-card:hover,
.page-index__feature-item:hover,
.page-index__detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index__category-image,
.page-index__feature-icon {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index__card-title,
.page-index__feature-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index__card-title a {
    text-decoration: none;
    color: #000000;
}

.page-index__card-title a:hover {
    color: #FCBC45;
}

.page-index__card-text,
.page-index__feature-text {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index__button--play,
.page-index__button--bet,
.page-index__button--claim,
.page-index__button--learn-more,
.page-index__button--download,
.page-index__button--view-details {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    padding: 10px 20px;
    font-size: 1em;
    margin-top: auto;
}

.page-index__button--play:hover,
.page-index__button--bet:hover,
.page-index__button--claim:hover,
.page-index__button--learn-more:hover,
.page-index__button--download:hover,
.page-index__button--view-details:hover {
    background-color: #000000;
    color: #FCBC45;
    border-color: #FCBC45;
}

.page-index__promotions-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 60px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-index__promo-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
}

.page-index__promo-image {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    min-width: 200px;
}

.page-index__promo-text {
    width: 50%;
    text-align: left;
}

.page-index__promo-text .page-index__section-title {
    color: #FCBC45;
    text-align: left;
}

.page-index__promo-text .page-index__section-description {
    color: #f0f0f0;
    text-align: left;
    margin: 0 0 30px 0;
}

.page-index__cta-buttons {
    text-align: center;
    margin-top: 40px;
}

.page-index__sub-section-title {
    font-size: 1.8em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index__deep-content p,
.page-index__deep-content ol,
.page-index__deep-content ul {
    font-size: 1.05em;
    color: #444444;
    margin-bottom: 15px;
    line-height: 1.7;
}

.page-index__guide-list {
    list-style-type: decimal;
    padding-left: 25px;
}

.page-index__guide-list li {
    margin-bottom: 10px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-index__hero-title {
        font-size: 2.8em;
    }
    .page-index__section-title {
        font-size: 2em;
    }
    .page-index__promo-content {
        flex-direction: column;
        text-align: center;
    }
    .page-index__promo-image,
    .page-index__promo-text {
        width: 100%;
    }
    .page-index__promo-text .page-index__section-title,
    .page-index__promo-text .page-index__section-description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-index {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    }
    .page-index__hero-section {
        min-height: 450px;
        padding: 40px 15px;
    }
    .page-index__hero-title {
        font-size: 2em;
    }
    .page-index__hero-description {
        font-size: 1em;
    }
    .page-index__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-index__button {
        padding: 12px 25px;
        font-size: 1em;
        min-width: unset;
    }
    .page-index__section-title {
        font-size: 1.8em;
    }
    .page-index__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-index__game-categories,
    .page-index__promotions-section,
    .page-index__why-choose-us,
    .page-index__deep-content,
    .page-index__detail-pages {
        margin: 40px auto;
        padding: 0 15px;
    }
    .page-index__categories-grid,
    .page-index__features-grid,
    .page-index__detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-index__category-image,
    .page-index__feature-icon {
        height: 180px;
    }
    .page-index__promo-image {
        min-width: 200px;
    }
    .page-index__sub-section-title {
        font-size: 1.5em;
    }
    .page-index__deep-content img, .page-index__game-categories img, .page-index__promotions-section img, .page-index__why-choose-us img, .page-index__detail-pages img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-index__hero-title {
        font-size: 1.8em;
    }
    .page-index__hero-description {
        font-size: 0.9em;
    }
    .page-index__section-title {
        font-size: 1.6em;
    }
    .page-index__button {
        padding: 10px 20px;
    }
    .page-index__category-image,
    .page-index__feature-icon {
        height: 150px;
    }
    .page-index__promo-image {
        min-width: 200px;
    }
}