.page-blog-best-game-strategies {
    font-family: Arial, sans-serif;
    color: #333333; /* Text Main */
    line-height: 1.6;
    background-color: var(--background-color, #F5F7FA); /* Background */
}

.page-blog-best-game-strategies__hero-section {
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    align-items: center;
    padding: 10px 0 40px; /* Small top padding, then larger bottom */
    background: linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%);
}

.page-blog-best-game-strategies__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.page-blog-best-game-strategies__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-best-game-strategies__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
}

.page-blog-best-game-strategies__hero-title {
    font-size: clamp(2.2rem, 3.5vw, 3rem); /* H1 font-size clamp */
    color: #E53935; /* Main color */
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.page-blog-best-game-strategies__hero-description {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 30px;
}

.page-blog-best-game-strategies__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%; /* For mobile responsiveness */
    max-width: 500px; /* Limit width on desktop */
    margin: 0 auto;
}

.page-blog-best-game-strategies__btn-primary,
.page-blog-best-game-strategies__btn-secondary,
.page-blog-best-game-strategies__btn-link {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    box-sizing: border-box; /* Include padding in width */
}

.page-blog-best-game-strategies__btn-primary {
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button color */
    color: #ffffff;
    border: 2px solid transparent;
}

.page-blog-best-game-strategies__btn-primary:hover {
    background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-best-game-strategies__btn-secondary {
    background: #ffffff;
    color: #E53935; /* Main color */
    border: 2px solid #E53935; /* Main color */
}

.page-blog-best-game-strategies__btn-secondary:hover {
    background: #E53935;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-best-game-strategies__btn-link {
    background: none;
    color: #E53935;
    border: 1px solid #E0E0E0;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.page-blog-best-game-strategies__btn-link:hover {
    background: #FF5A4F;
    color: #ffffff;
    border-color: #FF5A4F;
}

.page-blog-best-game-strategies__content-section {
    padding: 50px 0;
    background-color: #ffffff; /* Card BG */
}

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

.page-blog-best-game-strategies__section-title {
    font-size: 2.2rem;
    color: #E53935; /* Main color */
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.page-blog-best-game-strategies__text-block {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #333333;
}

.page-blog-best-game-strategies__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.page-blog-best-game-strategies__list-item {
    background-color: #f9f9f9;
    border-left: 4px solid #FF5A4F; /* Auxiliary color */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    color: #333333;
}

.page-blog-best-game-strategies__list-item-title {
    color: #E53935; /* Main color */
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: block;
}

.page-blog-best-game-strategies__game-strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.page-blog-best-game-strategies__strategy-card {
    background-color: #ffffff; /* Card BG */
    border: 1px solid #E0E0E0; /* Border color */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-blog-best-game-strategies__strategy-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-blog-best-game-strategies__card-title {
    font-size: 1.5rem;
    color: #E53935; /* Main color */
    padding: 20px 20px 10px;
    font-weight: 600;
}

.page-blog-best-game-strategies__card-text {
    font-size: 0.95rem;
    color: #555555;
    padding: 0 20px 20px;
    flex-grow: 1; /* Pushes button to bottom */
}

.page-blog-best-game-strategies__strategy-card .page-blog-best-game-strategies__btn-link {
    margin: 0 20px 20px;
    align-self: flex-start;
}

.page-blog-best-game-strategies__faq-list {
    margin-top: 30px;
    margin-bottom: 50px;
}

.page-blog-best-game-strategies__faq-item {
    background-color: #ffffff; /* Card BG */
    border: 1px solid #E0E0E0; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}