/* style/game-introduction.css */
.page-game-introduction {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for text on dark background */
    line-height: 1.6;
    background-color: #1A202C;
}

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

.page-game-introduction__section {
    padding: 60px 0;
    text-align: center;
}

.page-game-introduction__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-game-introduction__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
    text-align: left;
}

.page-game-introduction__highlight-keyword {
    color: #FFD700;
    font-weight: bold;
}

.page-game-introduction__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.page-game-introduction__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-game-introduction__hero-section .page-game-introduction__container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-game-introduction__hero-title {
    font-size: 4em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-introduction__hero-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #F0F0F0;
}

.page-game-introduction__hero-actions .page-game-introduction__btn {
    margin: 0 15px;
    font-size: 1.2em;
    padding: 15px 30px;
}

.page-game-introduction__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;
    cursor: pointer;
    border: none;
}

.page-game-introduction__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
}

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

.page-game-introduction__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-game-introduction__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-game-introduction__btn--link {
    background-color: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-game-introduction__btn--link:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-game-introduction__btn--large {
    padding: 18px 35px;
    font-size: 1.3em;
}

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

.page-game-introduction__game-item {
    background-color: #2D3748; /* Darker shade for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-introduction__game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

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

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

.page-game-introduction__game-item-description {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 20px;
}

.page-game-introduction__image-full-width {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-game-introduction__game-detail-block {
    background-color: #2D3748;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-introduction__game-detail-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-game-introduction__image-responsive {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-introduction__game-detail-block ul {
    list-style-type: disc;
    margin-left: 25px;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-game-introduction__game-detail-block ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-game-introduction__game-detail-block ul li strong {
    color: #FFD700;
}

.page-game-introduction__benefits ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
}

.page-game-introduction__benefits ul li {
    background-color: #2D3748;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #E0E0E0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
}

.page-game-introduction__benefits ul li strong {
    color: #FFD700;
    display: block;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.page-game-introduction__cta-section {
    background: linear-gradient(90deg, #FFD700 0%, #e6c200 100%);
    padding: 80px 0;
    color: #1A202C;
    text-align: center;
}

.page-game-introduction__cta-title {
    font-size: 3em;
    color: #1A202C;
    margin-bottom: 20px;
}

.page-game-introduction__cta-description {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #333;
}

.page-game-introduction__cta-actions .page-game-introduction__btn {
    margin: 0 15px;
}

.page-game-introduction__cta-actions .page-game-introduction__btn--primary {
    background-color: #1A202C;
    color: #FFD700;
}

.page-game-introduction__cta-actions .page-game-introduction__btn--primary:hover {
    background-color: #0d121c;
}

.page-game-introduction__cta-actions .page-game-introduction__btn--secondary {
    background-color: transparent;
    color: #1A202C;
    border: 2px solid #1A202C;
}

.page-game-introduction__cta-actions .page-game-introduction__btn--secondary:hover {
    background-color: #1A202C;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-introduction__hero-title {
        font-size: 3em;
    }
    .page-game-introduction__hero-description {
        font-size: 1.2em;
    }
    .page-game-introduction__section-title {
        font-size: 2.2em;
    }
    .page-game-introduction__game-item-title {
        font-size: 1.5em;
    }
    .page-game-introduction__game-detail-title {
        font-size: 1.8em;
    }
    .page-game-introduction__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-game-introduction__hero-title {
        font-size: 2.5em;
    }
    .page-game-introduction__hero-description {
        font-size: 1.1em;
    }
    .page-game-introduction__hero-actions {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .page-game-introduction__hero-actions .page-game-introduction__btn {
        margin: 0;
        width: 100%;
    }
    .page-game-introduction__section {
        padding: 40px 0;
    }
    .page-game-introduction__section-title {
        font-size: 2em;
    }
    .page-game-introduction__game-list {
        grid-template-columns: 1fr;
    }
    .page-game-introduction__game-item, .page-game-introduction__game-detail-block {
        padding: 25px;
    }
    .page-game-introduction__cta-title {
        font-size: 2em;
    }
    .page-game-introduction__cta-actions {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .page-game-introduction__cta-actions .page-game-introduction__btn {
        margin: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-game-introduction__hero-title {
        font-size: 2em;
    }
    .page-game-introduction__hero-description {
        font-size: 1em;
    }
    .page-game-introduction__section-title {
        font-size: 1.8em;
    }
    .page-game-introduction__game-item-title {
        font-size: 1.3em;
    }
    .page-game-introduction__game-detail-title {
        font-size: 1.6em;
    }
    .page-game-introduction__text-content, .page-game-introduction__game-item-description, .page-game-introduction__benefits ul li {
        font-size: 0.95em;
    }
    .page-game-introduction__cta-title {
        font-size: 1.8em;
    }
    .page-game-introduction__btn--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
}