/* style/game-introduction-history.css */

/* Base styles for the page content */
.page-game-introduction-history {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

/* Container for content width */
.page-game-introduction-history__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-game-introduction-history__hero {
    background: linear-gradient(135deg, #1A237E, #394390);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-introduction-history__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-game-introduction-history__title .highlight {
    color: #FFC107;
}

.page-game-introduction-history__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-introduction-history__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-game-introduction-history__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.page-game-introduction-history__btn.primary-btn {
    background-color: #FFC107;
    color: #1A237E;
    border-color: #FFC107;
}

.page-game-introduction-history__btn.primary-btn:hover {
    background-color: #e5ac00;
    border-color: #e5ac00;
    transform: translateY(-2px);
}

.page-game-introduction-history__btn.secondary-btn {
    background-color: transparent;
    color: #FFC107;
    border-color: #FFC107;
}

.page-game-introduction-history__btn.secondary-btn:hover {
    background-color: #FFC107;
    color: #1A237E;
    transform: translateY(-2px);
}

/* General Section Styles */
.page-game-introduction-history__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-game-introduction-history__section:nth-child(even) {
    background-color: #f0f2f7;
}

.page-game-introduction-history__section-title {
    font-size: 2.5em;
    color: #1A237E;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-game-introduction-history__sub-title {
    font-size: 1.8em;
    color: #1A237E;
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #FFC107;
    padding-left: 15px;
}

.page-game-introduction-history p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444;
}

.page-game-introduction-history p strong {
    color: #1A237E;
}

.page-game-introduction-history p a {
    color: #1A237E;
    text-decoration: underline;
}

.page-game-introduction-history p a:hover {
    color: #FFC107;
}

.page-game-introduction-history__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-game-introduction-history__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-game-introduction-history__list--ordered {
    list-style: decimal inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-game-introduction-history__list li,
.page-game-introduction-history__list--ordered li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #555;
}

.page-game-introduction-history__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-game-introduction-history__cta-group--final {
    margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-introduction-history__title {
        font-size: 2.8em;
    }
    .page-game-introduction-history__subtitle {
        font-size: 1.2em;
    }
    .page-game-introduction-history__section-title {
        font-size: 2em;
    }
    .page-game-introduction-history__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-game-introduction-history__hero {
        padding: 80px 0;
    }
    .page-game-introduction-history__title {
        font-size: 2.2em;
    }
    .page-game-introduction-history__subtitle {
        font-size: 1em;
    }
    .page-game-introduction-history__section {
        padding: 40px 0;
    }
    .page-game-introduction-history__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-game-introduction-history__sub-title {
        font-size: 1.4em;
    }
    .page-game-introduction-history__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-introduction-history__cta-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-game-introduction-history__hero {
        padding: 60px 0;
    }
    .page-game-introduction-history__title {
        font-size: 1.8em;
    }
    .page-game-introduction-history__subtitle {
        font-size: 0.9em;
    }
    .page-game-introduction-history__section-title {
        font-size: 1.5em;
    }
    .page-game-introduction-history__sub-title {
        font-size: 1.2em;
    }
    .page-game-introduction-history p,
    .page-game-introduction-history__list li,
    .page-game-introduction-history__list--ordered li {
        font-size: 0.95em;
    }
}