/* style/game-strategies.css */
.page-game-strategies {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A246A; /* Primary dark blue background */
    line-height: 1.6;
}

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

.page-game-strategies-hero-section {
    background: linear-gradient(135deg, #0A246A 0%, #1A3A7A 100%); /* Dark blue gradient */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: left;
}

.page-game-strategies-hero-content {
    flex: 1;
    padding-right: 40px;
}

.page-game-strategies-hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    line-height: 1.2;
}

.page-game-strategies-hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-game-strategies-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-game-strategies-img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-strategies-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-game-strategies-btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A246A; /* Dark blue */
}

.page-game-strategies-btn-primary:hover {
    background-color: #E6C200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-game-strategies-btn-secondary {
    background-color: #1A3A7A; /* Darker blue */
    color: #FFD700; /* Gold */
    border: 1px solid #FFD700;
    padding: 8px 20px;
    font-size: 1em;
}

.page-game-strategies-btn-secondary:hover {
    background-color: #FFD700; /* Gold */
    color: #0A246A; /* Dark blue */
    transform: translateY(-2px);
}

.page-game-strategies-btn-large {
    padding: 15px 35px;
    font-size: 1.3em;
}

.page-game-strategies-section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-game-strategies-intro-section,
.page-game-strategies-detail-articles,
.page-game-strategies-tips-section,
.page-game-strategies-cta-section {
    padding: 60px 0;
    background-color: #0A246A;
}

.page-game-strategies-intro-section {
    background-color: #1A3A7A; /* Slightly lighter dark blue */
}

.page-game-strategies-text-content {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #E0E0E0;
}

.page-game-strategies-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-game-strategies-feature-item {
    background-color: #0A246A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-game-strategies-feature-item:hover {
    transform: translateY(-5px);
}

.page-game-strategies-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-strategies-feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-strategies-feature-item p {
    color: #B0B0B0;
    font-size: 0.95em;
}

.page-game-strategies-article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-strategies-article-card {
    background-color: #1A3A7A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.page-game-strategies-article-card:hover {
    transform: translateY(-5px);
}

.page-game-strategies-article-title {
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-game-strategies-article-title a {
    color: #FFD700; /* Gold */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-strategies-article-title a:hover {
    color: #E6C200; /* Darker gold */
}

.page-game-strategies-article-description {
    color: #B0B0B0;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-strategies-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-strategies-tip-item {
    background-color: #1A3A7A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-game-strategies-tip-item:hover {
    transform: translateY(-5px);
}

.page-game-strategies-tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-strategies-tip-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-strategies-tip-item p {
    color: #B0B0B0;
    font-size: 0.95em;
}

.page-game-strategies-cta-section {
    background-color: #0A246A;
    padding: 80px 0;
    text-align: center;
}

.page-game-strategies-cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 25px;
}

.page-game-strategies-cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E0E0E0;
}

.page-game-strategies-text-center {
    text-align: center;
}

.page-game-strategies-mt-40 {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-strategies-hero-section .page-game-strategies-container {
        flex-direction: column;
        text-align: center;
    }

    .page-game-strategies-hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .page-game-strategies-hero-title {
        font-size: 2.5em;
    }

    .page-game-strategies-section-title {
        font-size: 2em;
    }

    .page-game-strategies-cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-game-strategies-hero-section {
        padding: 60px 0;
    }

    .page-game-strategies-hero-title {
        font-size: 2em;
    }

    .page-game-strategies-hero-description {
        font-size: 1em;
    }

    .page-game-strategies-btn-large {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-game-strategies-section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-game-strategies-intro-section,
    .page-game-strategies-detail-articles,
    .page-game-strategies-tips-section,
    .page-game-strategies-cta-section {
        padding: 40px 0;
    }

    .page-game-strategies-text-content {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-game-strategies-feature-title,
    .page-game-strategies-article-title,
    .page-game-strategies-tip-title {
        font-size: 1.3em;
    }

    .page-game-strategies-article-description,
    .page-game-strategies-feature-item p,
    .page-game-strategies-tip-item p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-game-strategies-container {
        padding: 0 15px;
    }

    .page-game-strategies-hero-title {
        font-size: 1.8em;
    }

    .page-game-strategies-section-title {
        font-size: 1.6em;
    }

    .page-game-strategies-cta-title {
        font-size: 1.8em;
    }

    .page-game-strategies-features-grid,
    .page-game-strategies-article-grid,
    .page-game-strategies-tips-grid {
        grid-template-columns: 1fr;
    }
}