/* style/resources-game-strategy-guide.css */
.page-resources-game-strategy-guide {
    font-family: 'Arial', sans-serif;
    color: #f5e5c5; /* Light text for dark background */
    background-color: #0A1A3A;
    line-height: 1.6;
}

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

.page-resources-game-strategy-guide__section {
    padding: 60px 0;
}

.page-resources-game-strategy-guide__section--alt-bg {
    background-color: #1a2a4a; /* Slightly lighter dark blue */
}

.page-resources-game-strategy-guide__text-center {
    text-align: center;
}

.page-resources-game-strategy-guide__hero {
    background: linear-gradient(135deg, #0A1A3A, #3a4a6a); /* Dark blue gradient */
    color: #f5e5c5;
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-resources-game-strategy-guide__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-resources-game-strategy-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-resources-game-strategy-guide__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-resources-game-strategy-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-resources-game-strategy-guide__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
}

.page-resources-game-strategy-guide__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-game-strategy-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-resources-game-strategy-guide__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-resources-game-strategy-guide__btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A1A3A; /* Dark blue text */
    padding: 15px 30px;
    border-radius: 8px;
    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-resources-game-strategy-guide__btn:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-resources-game-strategy-guide__btn--primary {
    background-color: #FFD700;
    color: #0A1A3A;
}

.page-resources-game-strategy-guide__btn--secondary {
    background-color: #0A1A3A;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-game-strategy-guide__btn--secondary:hover {
    background-color: #1a2a4a;
    color: #FFD700;
    transform: translateY(-3px);
}

.page-resources-game-strategy-guide__btn--lg {
    padding: 18px 40px;
    font-size: 1.3em;
}

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

.page-resources-game-strategy-guide__game-card {
    background-color: #0A1A3A;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources-game-strategy-guide__game-card:hover {
    transform: translateY(-8px);
}

.page-resources-game-strategy-guide__game-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources-game-strategy-guide__game-card-title {
    font-size: 1.6em;
    color: #FFD700;
    padding: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.page-resources-game-strategy-guide__game-card-text {
    font-size: 0.95em;
    color: #c0c0c0;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-resources-game-strategy-guide__game-card .page-resources-game-strategy-guide__btn {
    margin: 0 20px 20px;
    text-align: center;
    width: calc(100% - 40px);
    padding: 12px 20px;
    font-size: 1em;
}

.page-resources-game-strategy-guide__full-width-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-game-strategy-guide__cta-box {
    background-color: #FFD700;
    color: #0A1A3A;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-game-strategy-guide__cta-text {
    font-size: 1.5em;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-resources-game-strategy-guide__app-download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    background-color: #1a2a4a;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-game-strategy-guide__app-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-game-strategy-guide__app-info {
    text-align: center;
}

.page-resources-game-strategy-guide__app-text {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-resources-game-strategy-guide__final-cta {
    background-color: #0A1A3A;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-game-strategy-guide__hero-title {
        font-size: 2.8em;
    }
    .page-resources-game-strategy-guide__section-title {
        font-size: 2em;
    }
    .page-resources-game-strategy-guide__game-strategy-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-resources-game-strategy-guide__hero {
        padding: 80px 0;
    }
    .page-resources-game-strategy-guide__hero-title {
        font-size: 2.2em;
    }
    .page-resources-game-strategy-guide__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-game-strategy-guide__section {
        padding: 40px 0;
    }
    .page-resources-game-strategy-guide__section-title {
        font-size: 1.8em;
    }
    .page-resources-game-strategy-guide__text {
        font-size: 1em;
    }
    .page-resources-game-strategy-guide__game-strategy-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-game-strategy-guide__app-download-section {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-resources-game-strategy-guide__hero-title {
        font-size: 1.8em;
    }
    .page-resources-game-strategy-guide__hero-subtitle {
        font-size: 0.9em;
    }
    .page-resources-game-strategy-guide__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-resources-game-strategy-guide__btn--lg {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-resources-game-strategy-guide__section-title {
        font-size: 1.5em;
    }
    .page-resources-game-strategy-guide__cta-text {
        font-size: 1.2em;
    }
}