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

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

.page-index__brand-name {
    color: #8B0000;
    font-weight: bold;
}

.page-index__section-title {
    font-size: 2.5em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 40px;
    position: relative;
}

.page-index__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

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

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

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

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

.page-index__btn--secondary {
    background-color: #8B0000;
    color: #FFD700;
    border: 2px solid #8B0000;
}

.page-index__btn--secondary:hover {
    background-color: #6a0000;
    transform: translateY(-2px);
}

.page-index__btn--tertiary {
    background-color: #333;
    color: #FFD700;
    border: 2px solid #333;
}

.page-index__btn--tertiary:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.page-index__btn--learn-more {
    background-color: transparent;
    color: #8B0000;
    border: 2px solid #8B0000;
    margin-top: 20px;
}

.page-index__btn--learn-more:hover {
    background-color: #8B0000;
    color: #FFD700;
}

.page-index__btn--play-now, .page-index__btn--view-promo, .page-index__btn--download, .page-index__btn--view-detail {
    background-color: #FFD700;
    color: #8B0000;
    border: none;
    font-size: 0.9em;
    padding: 8px 15px;
}

.page-index__btn--play-now:hover, .page-index__btn--view-promo:hover, .page-index__btn--download:hover, .page-index__btn--view-detail:hover {
    background-color: #e6c200;
}

/* Hero Section */
.page-index__hero-section {
    background: linear-gradient(135deg, #FFD700, #8B0000);
    padding: 80px 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap-reverse;
    text-align: center;
}

.page-index__hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

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

.page-index__hero-title .page-index__brand-name {
    color: #FFD700;
}

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

.page-index__hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-index__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.page-index__about-section .page-index__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

.page-index__feature-item {
    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-item: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;
}

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

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

/* Games Overview Section */
.page-index__games-overview-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

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

.page-index__game-category-item {
    background-color: #fff;
    padding: 25px;
    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__game-category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index__game-category-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index__game-category-title {
    font-size: 1.4em;
    color: #8B0000;
    margin-bottom: 10px;
}

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

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

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

.page-index__promo-item {
    background-color: #f9f9f9;
    padding: 25px;
    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__promo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.page-index__promo-title {
    font-size: 1.4em;
    color: #8B0000;
    margin-bottom: 10px;
}

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

.page-index__full-promo-cta {
    text-align: center;
    margin-top: 50px;
}

/* Download Section */
.page-index__download-section {
    padding: 60px 0;
    background-color: #f0f0f0;
}

.page-index__download-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

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

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

.page-index__download-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.page-index__download-text {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index__bug-bytes-info {
    margin-top: 40px;
    font-style: italic;
    color: #777;
}

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

.page-index__security-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-index__security-list li {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-index__security-icon {
    width: 35px;
    height: 35px;
    vertical-align: middle;
}

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

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

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

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

.page-index__detail-page-title {
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-index__detail-page-title a {
    color: #8B0000;
    text-decoration: none;
    font-weight: bold;
}

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

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

/* Final CTA Section */
.page-index__cta-final-section {
    padding: 80px 0;
    background-color: #8B0000;
    color: #fff;
    text-align: center;
}

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

.page-index__cta-final-section .page-index__section-description {
    color: #fff;
}

.page-index__cta-final-section .page-index__btn--primary {
    background-color: #FFD700;
    color: #8B0000;
    border-color: #FFD700;
}

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

.page-index__cta-final-section .page-index__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.page-index__cta-final-section .page-index__btn--secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
}

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

    .page-index__hero-content, .page-index__hero-image-wrapper {
        max-width: 100%;
    }

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

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

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

@media (max-width: 768px) {
    .page-index__hero-section {
        padding: 60px 0;
    }

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

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

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

    .page-index__btn {
        width: 80%;
        margin: 0 auto;
    }

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

    .page-index__section-description {
        font-size: 0.95em;
    }

    .page-index__feature-grid, .page-index__game-categories, .page-index__promo-grid, .page-index__download-options, .page-index__detail-page-list {
        grid-template-columns: 1fr;
    }

    .page-index__download-item {
        min-width: unset;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-index__hero-section {
        padding: 40px 0;
    }

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

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

    .page-index__btn {
        width: 90%;
    }
}