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

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

.page-index__text-center {
    text-align: center;
}

.page-index__section-title {
    font-size: 2.5em;
    color: #0A2E50;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.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__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

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

.page-index__btn--primary {
    background-color: #FFD700;
    color: #0A2E50;
    border: 2px solid #FFD700;
}

.page-index__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-index__btn--secondary {
    background-color: transparent;
    color: #0A2E50;
    border: 2px solid #0A2E50;
    margin-left: 15px;
}

.page-index__btn--secondary:hover {
    background-color: #0A2E50;
    color: #fff;
}

.page-index__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

.page-index__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    background-color: #0A2E50;
    color: #fff;
}

.page-index__btn--small:hover {
    background-color: #1a4d7d;
}

/* Hero Section */
.page-index__hero-section {
    background: linear-gradient(135deg, #0A2E50 0%, #1a4d7d 100%);
    color: #fff;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    flex-wrap: wrap;
}

.page-index__hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
    margin-right: 40px;
}

.page-index__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    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);
}

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

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

.page-index__hero-buttons .page-index__btn {
    margin-right: 15px;
}

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

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

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

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

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

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

.page-index__feature-title {
    font-size: 1.5em;
    color: #0A2E50;
    margin-bottom: 15px;
}

.page-index__feature-description {
    color: #555;
}

/* Game Types Section */
.page-index__game-types-section {
    padding: 60px 0;
}

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

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

.page-index__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.page-index__game-card-title {
    font-size: 1.6em;
    color: #0A2E50;
    padding: 15px 20px 0;
}

.page-index__game-card-title a {
    text-decoration: none;
    color: #0A2E50;
    transition: color 0.3s ease;
}

.page-index__game-card-title a:hover {
    color: #FFD700;
}

.page-index__game-card-description {
    padding: 0 20px 15px;
    color: #555;
}

.page-index__game-card .page-index__btn {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

/* Promotions Section */
.page-index__promotions-section {
    background-color: #0A2E50;
    color: #fff;
    padding: 60px 0;
}

.page-index__promotions-section .page-index__section-title {
    color: #FFD700;
}

.page-index__promotions-section .page-index__text-block {
    color: #e0e0e0;
}

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

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

.page-index__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-index__promo-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.page-index__promo-card-title {
    font-size: 1.6em;
    color: #FFD700;
    padding: 15px 20px 0;
}

.page-index__promo-card-description {
    padding: 0 20px 15px;
    color: #c0c0c0;
}

.page-index__promo-card .page-index__btn {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
    background-color: #FFD700;
    color: #0A2E50;
}

.page-index__promo-card .page-index__btn:hover {
    background-color: #e6c200;
}

/* Guide Section */
.page-index__guide-section {
    padding: 60px 0;
    background-color: #fff;
}

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

.page-index__guide-step-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__guide-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index__guide-step-title {
    font-size: 1.8em;
    color: #0A2E50;
    margin-bottom: 15px;
}

.page-index__guide-step-description {
    color: #666;
    margin-bottom: 25px;
}

/* Responsible Gaming Section */
.page-index__responsible-gaming-section {
    padding: 60px 0;
    background-color: #f0f2f5;
    text-align: center;
}

.page-index__responsible-gaming-image {
    max-width: 400px;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-index__faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-index__faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
}

.page-index__faq-question {
    font-size: 1.4em;
    color: #0A2E50;
    margin-bottom: 10px;
}

.page-index__faq-answer {
    color: #555;
}

/* CTA Section */
.page-index__cta-section {
    background: linear-gradient(90deg, #0A2E50, #1a4d7d);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.page-index__cta-section .page-index__section-title {
    color: #FFD700;
}

.page-index__cta-section .page-index__text-block {
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Floating Promo Bar */
.page-index__floating-promo-bar {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.page-index__floating-btn {
    background-color: #FFD700;
    color: #0A2E50;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.page-index__floating-btn:hover {
    background-color: #e6c200;
    transform: translateX(-5px);
}

.page-index__floating-btn--promo {
    background-color: #0A2E50;
    color: #FFD700;
}

.page-index__floating-btn--promo:hover {
    background-color: #1a4d7d;
}

.page-index__floating-icon {
    font-size: 1.5em;
    margin-right: 8px;
    line-height: 1;
}

.page-index__floating-text {
    white-space: nowrap;
}

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

    .page-index__hero-content {
        margin-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

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

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

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

    .page-index__hero-buttons .page-index__btn {
        margin: 10px 5px;
    }
}

@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: 1em;
    }

    .page-index__features-grid,
    .page-index__game-cards-grid,
    .page-index__promo-cards-grid,
    .page-index__guide-steps {
        grid-template-columns: 1fr;
    }

    .page-index__floating-promo-bar {
        right: 10px;
        bottom: 10px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: calc(100% - 20px);
    }

    .page-index__floating-btn {
        padding: 8px 12px;
        font-size: 0.9em;
    }

    .page-index__floating-icon {
        font-size: 1.2em;
        margin-right: 5px;
    }
}

@media (max-width: 480px) {
    .page-index__hero-buttons .page-index__btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }

    .page-index__floating-promo-bar {
        gap: 5px;
    }

    .page-index__floating-btn {
        padding: 6px 10px;
        font-size: 0.8em;
    }

    .page-index__floating-icon {
        font-size: 1em;
        margin-right: 3px;
    }
}