/* style/game-introduction.css */

/* CSS Variables */
:root {
    --page-game-introduction-primary-color: #0A2342; /* Deep Blue */
    --page-game-introduction-secondary-color: #FFD700; /* Gold */
    --page-game-introduction-light-text: #FFFFFF; /* White */
    --page-game-introduction-dark-text: #222222; /* Dark Grey for readability on light backgrounds */
    --page-game-introduction-dark-background-text: #E0E0E0; /* Light grey for text on dark primary color */
    --page-game-introduction-accent-dark: #B39700; /* Darker gold for contrast */
    --page-game-introduction-accent-light: #54657B; /* Lighter shade of primary for background */
    --page-game-introduction-border-color: #3A4F6B; /* Slightly lighter primary for borders */
}

/* Base styles for the page content, ensuring isolation */
.page-game-introduction {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-game-introduction-dark-text);
    background-color: #f8f8f8; /* Light background for general content */
    padding-top: 20px; /* Adjust based on header height */
    padding-bottom: 20px; /* Adjust based on footer height */
}

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

/* Hero Section */
.page-game-introduction__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--page-game-introduction-primary-color) 0%, #0A2342CC 100%); /* Primary color with some transparency */
    color: var(--page-game-introduction-light-text);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.page-game-introduction__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-game-introduction__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-game-introduction-secondary-color); /* Gold for emphasis */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-introduction__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--page-game-introduction-dark-background-text); /* Light grey for text on dark background */
}

.page-game-introduction__cta-button {
    display: inline-block;
    background-color: var(--page-game-introduction-secondary-color); /* Gold button */
    color: var(--page-game-introduction-primary-color); /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-game-introduction__cta-button:hover {
    background-color: var(--page-game-introduction-accent-dark); /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-game-introduction__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15; /* Subtler background image */
}

.page-game-introduction__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Section Titles and Descriptions */
.page-game-introduction__section-title {
    font-size: 2.5em;
    color: var(--page-game-introduction-primary-color); /* Deep Blue */
    text-align: center;
    margin-bottom: 20px;
    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: var(--page-game-introduction-secondary-color); /* Gold underline */
    border-radius: 2px;
}

.page-game-introduction__section-description {
    font-size: 1.1em;
    color: var(--page-game-introduction-dark-text);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

/* Why Choose Section */
.page-game-introduction__why-choose {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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