/* style/game-guides.css */

/* Custom properties for colors from the provided scheme */
:root {
    --page-bg-color: #08160F;
    --card-bg-color: #11271B;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
    --button-text-color: #ffffff; /* Explicitly white for primary buttons */
}

.page-game-guides {
    background-color: var(--page-bg-color);
    color: var(--text-main-color); /* Default text color for the page content */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 0; /* body padding-top handled by shared.css */
}

/* --- Hero Section --- */
.page-game-guides__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    text-align: center;
    overflow: hidden;
    background-color: var(--card-bg-color); /* Dark background for hero */
}

.page-game-guides__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px; /* Space between image and text */
}

.page-game-guides__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-guides__hero-content {
    max-width: 900px;
    color: var(--text-main-color); /* Light text on dark background */
}

.page-game-guides__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gold-color); /* Gold color for main title */
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Subtle glow */
}

.page-game-guides__intro-text {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--text-secondary-color);
}

.page-game-guides__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* --- General Section Styling --- */
.page-game-guides__section {
    padding: 60px 20px;
    background-color: var(--page-bg-color); /* Default section background */
    color: var(--text-main-color); /* Default text color */
}

.page-game-guides__dark-bg {
    background-color: var(--card-bg-color); /* Darker background for some sections */
    color: var(--text-main-color);
}

.page-game-guides__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}