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

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

.page-game-strategy-guides-strategy-updates__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.page-game-strategy-guides-strategy-updates__hero-content {
    flex: 1;
    min-width: 300px;
    padding-left: 20px;
}

.page-game-strategy-guides-strategy-updates__hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.page-game-strategy-guides-strategy-updates__hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-game-strategy-guides-strategy-updates__hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

.page-game-strategy-guides-strategy-updates__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-game-strategy-guides-strategy-updates__section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-game-strategy-guides-strategy-updates__section:nth-of-type(even) {
    background-color: #fff;
}

.page-game-strategy-guides-strategy-updates__section h2 {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-game-strategy-guides-strategy-updates__section h3 {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-game-strategy-guides-strategy-updates__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-game-strategy-guides-strategy-updates__section ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #444;
}

.page-game-strategy-guides-strategy-updates__section ul li {
    margin-bottom: 8px;
}

.page-game-strategy-guides-strategy-updates__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
}

.page-game-strategy-guides-strategy-updates__btn--primary {
    background-color: #ffc107;
    color: #333;
    border: 2px solid #ffc107;
}

.page-game-strategy-guides-strategy-updates__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #111;
}

.page-game-strategy-guides-strategy-updates__btn--secondary {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    margin-left: 15px;
}

.page-game-strategy-guides-strategy-updates__btn--secondary:hover {
    background-color: #007bff;
    color: #fff;
}

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

.page-game-strategy-guides-strategy-updates__strategy-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease;
}

.page-game-strategy-guides-strategy-updates__strategy-item:hover {
    transform: translateY(-5px);
}

.page-game-strategy-guides-strategy-updates__strategy-item img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
}

.page-game-strategy-guides-strategy-updates__strategy-item h3 {
    color: #007bff;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-game-strategy-guides-strategy-updates__strategy-item ul {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.page-game-strategy-guides-strategy-updates__strategy-item ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.page-game-strategy-guides-strategy-updates__strategy-item ul li::before {
    content: '✓';
    color: #ffc107;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-game-strategy-guides-strategy-updates__grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-strategy-guides-strategy-updates__tip-card {
    background-color: #fff;
    border-left: 5px solid #007bff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-game-strategy-guides-strategy-updates__tip-card h3 {
    color: #007bff;
    font-size: 1.4em;
    margin-top: 0;
}

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

.page-game-strategy-guides-strategy-updates__benefit-card {
    background-color: #e6f2ff; /* Light blue background for contrast */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-game-strategy-guides-strategy-updates__benefit-card h3 {
    color: #007bff;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-game-strategy-guides-strategy-updates__benefit-card p {
    color: #333;
}

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

.page-game-strategy-guides-strategy-updates__accordion {
    margin-top: 30px;
}

.page-game-strategy-guides-strategy-updates__accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.page-game-strategy-guides-strategy-updates__accordion-header {
    background-color: #007bff;
    color: #fff;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    position: relative;
}

.page-game-strategy-guides-strategy-updates__accordion-header::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-game-strategy-guides-strategy-updates__accordion-header.active {
    background-color: #0056b3;
}

.page-game-strategy-guides-strategy-updates__accordion-header.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-game-strategy-guides-strategy-updates__accordion-body {
    padding: 0 25px;
    background-color: #fefefe;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-game-strategy-guides-strategy-updates__accordion-body p {
    padding: 15px 0;
    margin: 0;
    color: #555;
}

.page-game-strategy-guides-strategy-updates__cta-bottom {
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.page-game-strategy-guides-strategy-updates__cta-content {
    max-width: 800px;
    padding: 0 20px;
}

.page-game-strategy-guides-strategy-updates__cta-bottom h2 {
    color: #fff;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.page-game-strategy-guides-strategy-updates__cta-bottom h2::after {
    background-color: #fff;
}

.page-game-strategy-guides-strategy-updates__cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-game-strategy-guides-strategy-updates__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-game-strategy-guides-strategy-updates__cta-image {
    margin-top: 30px;
}

.page-game-strategy-guides-strategy-updates__cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .page-game-strategy-guides-strategy-updates__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-game-strategy-guides-strategy-updates__hero-content, .page-game-strategy-guides-strategy-updates__hero-image {
        padding: 0 20px;
    }

    .page-game-strategy-guides-strategy-updates__hero-content h1 {
        font-size: 2.5em;
    }

    .page-game-strategy-guides-strategy-updates__section h2 {
        font-size: 2em;
    }

    .page-game-strategy-guides-strategy-updates__cta-bottom h2 {
        font-size: 2.2em;
    }

    .page-game-strategy-guides-strategy-updates__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .page-game-strategy-guides-strategy-updates__hero {
        padding: 60px 0;
    }

    .page-game-strategy-guides-strategy-updates__hero-content h1 {
        font-size: 2em;
    }

    .page-game-strategy-guides-strategy-updates__hero-content p {
        font-size: 1em;
    }

    .page-game-strategy-guides-strategy-updates__section {
        padding: 40px 0;
    }

    .page-game-strategy-guides-strategy-updates__section h2 {
        font-size: 1.8em;
    }

    .page-game-strategy-guides-strategy-updates__section h3 {
        font-size: 1.4em;
    }

    .page-game-strategy-guides-strategy-updates__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-strategy-guides-strategy-updates__cta-bottom h2 {
        font-size: 1.8em;
    }

    .page-game-strategy-guides-strategy-updates__cta-bottom p {
        font-size: 1em;
    }

    .page-game-strategy-guides-strategy-updates__strategy-grid,
    .page-game-strategy-guides-strategy-updates__grid-2-col,
    .page-game-strategy-guides-strategy-updates__benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-game-strategy-guides-strategy-updates__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-game-strategy-guides-strategy-updates__accordion-header::after {
        right: 20px;
    }

    .page-game-strategy-guides-strategy-updates__accordion-body p {
        padding: 10px 0;
    }
}