/* style/game-guides.css */
.page-game-guides {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

/* Hero Section */
.page-game-guides__hero-section {
    background: linear-gradient(135deg, #003366, #1a4f80);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.page-game-guides__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Auxiliary color for emphasis */
    line-height: 1.2;
}

.page-game-guides__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

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

.page-game-guides__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-game-guides__btn--primary {
    background-color: #FFCC00; /* Auxiliary color */
    color: #003366; /* Main color for contrast */
    border: 2px solid #FFCC00;
}

.page-game-guides__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-game-guides__btn--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-game-guides__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-game-guides__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

/* General Section Styling */
.page-game-guides__intro-section,
.page-game-guides__guides-list-section,
.page-game-guides__why-choose-section,
.page-game-guides__responsible-gaming-section,
.page-game-guides__final-cta-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-game-guides__intro-section,
.page-game-guides__responsible-gaming-section {
    background-color: #fff;
}

.page-game-guides__section-title {
    font-size: 2.5em;
    color: #003366; /* Main color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-game-guides__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

.page-game-guides__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides__image--large {
    max-height: 400px;
    object-fit: cover;
}

/* Guides List Grid */
.page-game-guides__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-game-guides__guide-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-game-guides__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-game-guides__card-title {
    font-size: 1.4em;
    color: #003366;
    margin: 20px 20px 10px;
    line-height: 1.3;
}

.page-game-guides__card-title a {
    color: #003366;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-guides__card-title a:hover {
    color: #FFCC00;
}

.page-game-guides__card-description {
    font-size: 0.95em;
    color: #555;
    padding: 0 20px;
    flex-grow: 1;
    text-align: justify;
}

.page-game-guides__guide-card .page-game-guides__btn {
    margin: 20px;
    align-self: flex-start;
    background-color: #003366;
    color: #fff;
    border: 1px solid #003366;
}

.page-game-guides__guide-card .page-game-guides__btn:hover {
    background-color: #FFCC00;
    color: #003366;
    border-color: #FFCC00;
}

/* Why Choose Section */
.page-game-guides__why-choose-section {
    background-color: #eaf3f8; /* Lighter shade of main color */
}

.page-game-guides__flex-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-game-guides__text-column,
.page-game-guides__image-column {
    flex: 1;
    min-width: 300px;
}

.page-game-guides__features-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-game-guides__features-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333;
    position: relative;
    padding-left: 30px;
}

.page-game-guides__features-list li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #FFCC00;
    font-size: 1.2em;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-game-guides__hero-title {
        font-size: 2.5em;
    }
    .page-game-guides__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-guides__section-title {
        font-size: 2em;
    }
    .page-game-guides__grid {
        grid-template-columns: 1fr;
    }
    .page-game-guides__flex-content {
        flex-direction: column;
    }
    .page-game-guides__image-column {
        order: -1; /* Image first on mobile */
    }
    .page-game-guides__hero-section, .page-game-guides__intro-section, .page-game-guides__guides-list-section, .page-game-guides__why-choose-section, .page-game-guides__responsible-gaming-section, .page-game-guides__final-cta-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-game-guides__hero-title {
        font-size: 2em;
    }
    .page-game-guides__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-game-guides__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-guides__section-title {
        font-size: 1.8em;
    }
}