/* style/game-guides-card-games.css */

/* Base styles for the page content wrapper */
.page-game-guides-card-games {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark gray for general text for good contrast on light backgrounds */
    line-height: 1.6;
    background-color: #f9f9f9; /* Light background for readability */
}

/* Container for content width */
.page-game-guides-card-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-game-guides-card-games__hero-section {
    background: linear-gradient(135deg, #003366, #FFCC00); /* Main colors for gradient */
    color: #ffffff; /* White text on dark/gradient background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-guides-card-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff; /* White on dark blue */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-game-guides-card-games__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #eeeeee; /* Slightly off-white for subtitle */
}

.page-game-guides-card-games__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* General Section Styling */
.page-game-guides-card-games__section {
    padding: 60px 0;
    border-bottom: 1px solid #eeeeee;
}

.page-game-guides-card-games__section:last-of-type {
    border-bottom: none;
}

.page-game-guides-card-games__section-title {
    font-size: 2.8em;
    color: #003366; /* Deep blue for main titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-game-guides-card-games__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Gold accent under titles */
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-game-guides-card-games__subsection-title {
    font-size: 2.2em;
    color: #003366; /* Deep blue for sub-titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFCC00; /* Gold accent on left */
    padding-left: 15px;
}

.page-game-guides-card-games__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
}

/* Buttons */
.page-game-guides-card-games__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;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.page-game-guides-card-games__btn--primary {
    background-color: #FFCC00; /* Gold background */
    color: #003366; /* Deep blue text for contrast */
    border: 2px solid #FFCC00;
}

.page-game-guides-card-games__btn--primary:hover {
    background-color: #e6b800; /* Darker gold on hover */
    border-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides-card-games__btn--secondary {
    background-color: transparent;
    color: #003366; /* Deep blue text */
    border: 2px solid #003366; /* Deep blue border */
}