.page-game-introduction {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A1931; /* Main dark blue background */
    line-height: 1.6;
    padding-bottom: 50px; /* Space for footer */
}

.page-game-introduction .highlight {
    color: #FFD700; /* Gold accent for highlights */
}

/* Hero Section */
.page-game-introduction__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A1931 0%, #1a3a66 100%); /* Dark blue gradient */
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.page-game-introduction__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-game-introduction__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    line-height: 1.2;
}

.page-game-introduction__hero-subtitle {
    font-size: 1.15em;
    margin-bottom: 40px;
    color: #D3D3D3; /* Lighter gray for subtitle */
}

.page-game-introduction__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.page-game-introduction__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark blue text */
}

.page-game-introduction__button--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-game-introduction__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700; /* Gold border */
}

.page-game-introduction__button--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #0A1931; /* Dark blue text on hover */
    transform: translateY(-2px);
}

.page-game-introduction__hero-image-wrapper {
    margin-top: 40px;
    max-width: 100%;
    z-index: 0; /* Behind text */
}

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

/* General Section Styling */
.page-game-introduction__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.page-game-introduction__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 25px;
    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__section-description {
    font-size: 1.1em;
    color: #C0C0C0; /* Lighter gray for descriptions */
    max-width: 900px;
    margin: 0 auto 40px;
}

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

.page-game-introduction__game-item {
    background-color: #1A2A46; /* Slightly lighter dark blue for cards */
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease-out, transform 0.6s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(20px);
}

.page-game-introduction__game-item.page-game-introduction--fade-in {
    opacity: 1;
    transform: translateY(0);
}

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

.page-game-introduction__game-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-game-introduction__game-description {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 25px;
    flex-grow: 1; /* Make description take up available space */
}

.page-game-introduction__button--details {
    background-color: #FFD700;
    color: #0A1931;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 6px;
    align-self: flex-start; /* Align button to start of flex item */
}

.page-game-introduction__button--details:hover {
    background-color: #e6c200;
    transform: translateY(-1px);
}

/* Why Choose Section */
.page-game-introduction__why-choose {
    background-color: #0A1931;
}

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

.page-game-introduction__feature-item {
    background-color: #1A2A46;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-game-introduction__feature-item:hover {
    transform: translateY(-5px);
}

.page-game-introduction__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-introduction__feature-description {
    font-size: 1em;
    color: #B0B0B0;
}

/* Call to Action Section */
.page-game-introduction__cta {
    background: linear-gradient(90deg, #0A1931 0%, #1a3a66 100%);
    padding: 80px 20px;
    color: #FFFFFF;
}

.page-game-introduction__cta-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-introduction__hero-title {
        font-size: 2.8em;
    }
    .page-game-introduction__section-title {
        font-size: 2.2em;
    }
    .page-game-introduction__game-list,
    .page-game-introduction__features {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-game-introduction__hero {
        padding: 60px 15px;
    }
    .page-game-introduction__hero-title {
        font-size: 2.2em;
    }
    .page-game-introduction__hero-subtitle {
        font-size: 1em;
    }
    .page-game-introduction__hero-actions,
    .page-game-introduction__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-introduction__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-game-introduction__section {
        padding: 40px 15px;
    }
    .page-game-introduction__section-title {
        font-size: 1.8em;
    }
    .page-game-introduction__section-description {
        font-size: 0.95em;
    }
    .page-game-introduction__game-list,
    .page-game-introduction__features {
        grid-template-columns: 1fr;
    }
    .page-game-introduction__game-item,
    .page-game-introduction__feature-item {
        padding: 25px;
    }
    .page-game-introduction__game-title {
        font-size: 1.6em;
    }
    .page-game-introduction__feature-title {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .page-game-introduction__hero-title {
        font-size: 1.8em;
    }
    .page-game-introduction__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-game-introduction__section-title {
        font-size: 1.5em;
    }
    .page-game-introduction__game-thumbnail {
        height: 160px;
    }
}