/* style/index.css */
.page-index {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8;
    background-color: #0A192F;
    line-height: 1.6;
}

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

.page-index__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.page-index__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-index__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

.page-index__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-index__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
    margin-left: 15px;
}

.page-index__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-index__btn--outline {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
    padding: 10px 20px;
}

.page-index__btn--outline:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-index__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

/* Hero Section */
.page-index__hero-section {
    background: linear-gradient(135deg, #0A192F, #1a3763);
    padding: 80px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

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

.page-index__hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

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

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

.page-index__hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.page-index__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.page-index__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.page-index__features-section {
    padding: 80px 0;
    background-color: #0F1F3F;
}

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

.page-index__feature-item {
    background-color: #1a2b4b;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index__feature-item:hover {
    transform: translateY(-10px);
    background-color: #2a3d60;
}

.page-index__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-index__feature-text {
    font-size: 1em;
    color: #F8F8F8;
}

/* Games Section */
.page-index__games-section {
    padding: 80px 0;
    background-color: #0A192F;
}

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

.page-index__game-card {
    background-color: #1a2b4b;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-index__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-index__game-card h3,
.page-index__game-card p,
.page-index__game-card .page-index__btn {
    padding: 0 20px;
}

.page-index__game-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-index__game-text {
    font-size: 0.95em;
    color: #F8F8F8;
    margin-bottom: 20px;
}

.page-index__game-card .page-index__btn {
    margin-bottom: 20px;
}

.page-index__view-more-games {
    text-align: center;
}

/* Promotions Section */
.page-index__promotions-section {
    padding: 80px 0;
    background-color: #0F1F3F;
}

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

.page-index__promotion-card {
    background-color: #1a2b4b;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-index__promotion-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-index__promotion-card h3,
.page-index__promotion-card p,
.page-index__promotion-card .page-index__btn {
    padding: 0 20px;
}

.page-index__promotion-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-index__promotion-text {
    font-size: 0.95em;
    color: #F8F8F8;
    margin-bottom: 20px;
}

.page-index__promotion-card .page-index__btn {
    margin-bottom: 20px;
}

.page-index__view-more-promotions {
    text-align: center;
}

/* How To Start Section */
.page-index__how-to-start-section {
    padding: 80px 0;
    background-color: #0A192F;
}

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

.page-index__step-item {
    background-color: #1a2b4b;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-index__step-item:hover {
    transform: translateY(-10px);
}

.page-index__step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-index__step-text {
    font-size: 1em;
    color: #F8F8F8;
    margin-bottom: 20px;
}

/* Responsible Gambling Section */
.page-index__responsible-gambling-section {
    padding: 80px 0;
    background-color: #0F1F3F;
}

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

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

.page-index__responsible-gambling-text {
    flex: 2;
    min-width: 300px;
    text-align: left;
}

.page-index__responsible-gambling-text p {
    margin-bottom: 20px;
    color: #F8F8F8;
    font-size: 1.1em;
}

/* App Download Section */
.page-index__app-download-section {
    padding: 80px 0;
    background-color: #0A192F;
}

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

.page-index__app-text-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-index__app-image {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Blog Section */
.page-index__blog-section {
    padding: 80px 0;
    background-color: #0F1F3F;
}

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

.page-index__blog-card {
    background-color: #1a2b4b;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-index__blog-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.page-index__blog-title {
    font-size: 1.4em;
    color: #FFD700;
    margin: 20px 20px 10px 20px;
}

.page-index__blog-title .page-index__blog-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index__blog-title .page-index__blog-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-index__blog-excerpt {
    font-size: 0.9em;
    color: #F8F8F8;
    margin: 0 20px 20px 20px;
}

.page-index__blog-card .page-index__btn {
    margin: 0 20px 20px 20px;
}

/* About Section */
.page-index__about-section {
    padding: 80px 0;
    background-color: #0A192F;
}

.page-index__about-section .page-index__section-description {
    text-align: left;
}

.page-index__about-image-wrapper {
    text-align: center;
    margin: 40px 0;
}

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

.page-index__about-cta {
    text-align: center;
    margin-top: 40px;
}

/* Detail Pages Section */
.page-index__detail-pages-section {
    padding: 80px 0;
    background-color: #0F1F3F;
}

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

.page-index__detail-page-card {
    background-color: #1a2b4b;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-index__detail-page-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index__detail-page-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index__detail-page-title a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-index__detail-page-description {
    font-size: 0.95em;
    color: #F8F8F8;
    margin-bottom: 20px;
}

/* CTA Section */
.page-index__cta-section {
    background: linear-gradient(45deg, #0A192F, #1a3763);
    padding: 80px 0;
    text-align: center;
}

.page-index__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-index__cta-description {
    font-size: 1.2em;
    color: #F8F8F8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-index__hero-section .page-index__container {
        flex-direction: column;
        text-align: center;
    }

    .page-index__hero-content,
    .page-index__hero-image-wrapper {
        text-align: center;
    }

    .page-index__hero-buttons {
        justify-content: center;
    }

    .page-index__hero-title {
        font-size: 2.8em;
    }

    .page-index__app-content,
    .page-index__responsible-gambling-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .page-index__app-text-wrapper,
    .page-index__responsible-gambling-text {
        text-align: center;
    }

    .page-index__app-image,
    .page-index__responsible-gambling-image {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-index__section-title {
        font-size: 2em;
    }

    .page-index__hero-title {
        font-size: 2.2em;
    }

    .page-index__hero-description {
        font-size: 1.1em;
    }

    .page-index__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-index__btn--secondary {
        margin-left: 0;
        margin-top: 10px;
    }

    .page-index__hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-index__cta-title {
        font-size: 2.5em;
    }

    .page-index__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index__hero-title {
        font-size: 1.8em;
    }

    .page-index__section-title {
        font-size: 1.8em;
    }

    .page-index__cta-title {
        font-size: 2em;
    }

    .page-index__hero-buttons {
        width: 100%;
    }

    .page-index__btn--primary,
    .page-index__btn--secondary {
        width: 100%;
        margin-left: 0;
    }
}