.page-resources-df999-game-strategy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-resources-df999-game-strategy__article-width {
    max-width: 800px;
    margin: 0 auto;
}

.page-resources-df999-game-strategy__hero-section {
    background: linear-gradient(135deg, #003366 0%, #FFCC00 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-df999-game-strategy__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffffff;
}

.page-resources-df999-game-strategy__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resources-df999-game-strategy__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-resources-df999-game-strategy__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

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

.page-resources-df999-game-strategy__btn--secondary {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
}

.page-resources-df999-game-strategy__btn--secondary:hover {
    background-color: #003366;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-resources-df999-game-strategy__btn--accent {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #003366;
}

.page-resources-df999-game-strategy__btn--accent:hover {
    background-color: #001a33;
    color: #FFCC00;
    transform: translateY(-2px);
}

.page-resources-df999-game-strategy__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-resources-df999-game-strategy__content-section {
    padding: 60px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.page-resources-df999-game-strategy__back-link {
    display: inline-block;
    margin-bottom: 40px;
    color: #003366;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-df999-game-strategy__back-link:hover {
    color: #FFCC00;
}

.page-resources-df999-game-strategy__article p {
    margin-bottom: 1em;
    font-size: 1.1em;
    color: #444;
}

.page-resources-df999-game-strategy__article ul {
    margin-bottom: 1em;
    padding-left: 25px;
}

.page-resources-df999-game-strategy__article li {
    margin-bottom: 0.5em;
    font-size: 1.1em;
    color: #444;
}

.page-resources-df999-game-strategy__heading {
    font-size: 2em;
    color: #003366;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFCC00;
    padding-bottom: 10px;
}

.page-resources-df999-game-strategy__sub-heading {
    font-size: 1.5em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-df999-game-strategy__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-resources-df999-game-strategy__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-df999-game-strategy__image-caption {
    font-style: italic;
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}

.page-resources-df999-game-strategy__btn-group {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-resources-df999-game-strategy__cta-section {
    background-color: #003366;
    color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
}

.page-resources-df999-game-strategy__cta-title {
    font-size: 2em;
    margin-bottom: 25px;
    color: #FFCC00;
}

.page-resources-df999-game-strategy__related-resources {
    padding: 60px 0;
    background-color: #f0f5f9;
}

.page-resources-df999-game-strategy__related-resources .page-resources-df999-game-strategy__heading {
    text-align: center;
    border-bottom: none;
    margin-bottom: 40px;
}

.page-resources-df999-game-strategy__resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-resources-df999-game-strategy__resource-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

.page-resources-df999-game-strategy__resource-card:hover {
    transform: translateY(-5px);
}

.page-resources-df999-game-strategy__resource-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-resources-df999-game-strategy__resource-card-title {
    font-size: 1.3em;
    color: #003366;
    margin: 15px 15px 10px;
}

.page-resources-df999-game-strategy__resource-card-title a {
    text-decoration: none;
    color: inherit;
}

.page-resources-df999-game-strategy__resource-card-title a:hover {
    color: #FFCC00;
}

.page-resources-df999-game-strategy__resource-card-description {
    font-size: 0.95em;
    color: #555;
    padding: 0 15px;
    margin-bottom: 20px;
}

.page-resources-df999-game-strategy__resource-card .page-resources-df999-game-strategy__btn {
    margin: 0 15px 15px;
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-df999-game-strategy__hero-title {
        font-size: 2.2em;
    }

    .page-resources-df999-game-strategy__hero-subtitle {
        font-size: 1.1em;
    }

    .page-resources-df999-game-strategy__heading {
        font-size: 1.8em;
    }

    .page-resources-df999-game-strategy__sub-heading {
        font-size: 1.3em;
    }

    .page-resources-df999-game-strategy__btn-group {
        flex-direction: column;
        align-items: center;
    }

    .page-resources-df999-game-strategy__btn {
        width: 80%;
        max-width: 280px;
    }

    .page-resources-df999-game-strategy__resource-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-resources-df999-game-strategy__hero-title {
        font-size: 1.8em;
    }

    .page-resources-df999-game-strategy__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-df999-game-strategy__heading {
        font-size: 1.5em;
    }

    .page-resources-df999-game-strategy__sub-heading {
        font-size: 1.2em;
    }

    .page-resources-df999-game-strategy__content-section,
    .page-resources-df999-game-strategy__related-resources {
        padding: 40px 0;
    }
}