/* style/resources-vip79-game-strategy.css */

/* General Styles */
.page-resources-vip79-game-strategy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-resources-vip79-game-strategy .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-vip79-game-strategy .section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker shade of primary for contrast */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-vip79-game-strategy .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #28a745; /* Secondary color for accent */
    border-radius: 2px;
}

.page-resources-vip79-game-strategy .hero-section {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-vip79-game-strategy .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
}

.page-resources-vip79-game-strategy .hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e9ecef;
}

.page-resources-vip79-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;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.page-resources-vip79-game-strategy .btn-primary {
    background-color: #007bff;
    color: #fff;
}

.page-resources-vip79-game-strategy .btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-resources-vip79-game-strategy .btn-secondary {
    background-color: #28a745;
    color: #fff;
}

.page-resources-vip79-game-strategy .btn-secondary:hover {
    background-color: #1e7e34;
    transform: translateY(-2px);
}

.page-resources-vip79-game-strategy .introduction-section,
.page-resources-vip79-game-strategy .game-strategy-section,
.page-resources-vip79-game-strategy .optimization-section,
.page-resources-vip79-game-strategy .cta-section,
.page-resources-vip79-game-strategy .faq-section,
.page-resources-vip79-game-strategy .conclusion-section {
    padding: 60px 0;
}

.page-resources-vip79-game-strategy .introduction-section {
    background-color: #fff;
}

.page-resources-vip79-game-strategy .content-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.page-resources-vip79-game-strategy .content-wrapper.reverse {
    flex-direction: row-reverse;
}

.page-resources-vip79-game-strategy .content-wrapper .text-content {
    flex: 1;
}

.page-resources-vip79-game-strategy .content-wrapper .image-content {
    flex: 1;
    text-align: center;
}

.page-resources-vip79-game-strategy .content-wrapper .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-vip79-game-strategy .introduction-section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.page-resources-vip79-game-strategy .introduction-section strong {
    color: #007bff;
}

.page-resources-vip79-game-strategy .game-strategy-section {
    background-color: #f0f8ff;
}

.page-resources-vip79-game-strategy .strategy-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 40px;
}

.page-resources-vip79-game-strategy .strategy-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 25px;
    text-align: center;
}

.page-resources-vip79-game-strategy .strategy-item h4 {
    font-size: 1.4em;
    color: #28a745;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-resources-vip79-game-strategy .strategy-item ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 0;
    color: #444;
}

.page-resources-vip79-game-strategy .strategy-item li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-vip79-game-strategy .strategy-item li strong {
    color: #0056b3;
}

.page-resources-vip79-game-strategy .optimization-section {
    background-color: #fff;
}

.page-resources-vip79-game-strategy .optimization-item {
    background-color: #f9f9f9;
    border-left: 5px solid #007bff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-vip79-game-strategy .optimization-item .item-title {
    font-size: 1.6em;
    color: #007bff;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-resources-vip79-game-strategy .optimization-item p {
    font-size: 1.05em;
    color: #555;
}

.page-resources-vip79-game-strategy .optimization-item ul {
    list-style: circle;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #555;
}

.page-resources-vip79-game-strategy .cta-section {
    background: linear-gradient(45deg, #007bff, #28a745);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-resources-vip79-game-strategy .cta-section .section-title {
    color: #fff;
}

.page-resources-vip79-game-strategy .cta-section .section-title::after {
    background-color: #fff;
}

.page-resources-vip79-game-strategy .cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e9ecef;
}

.page-resources-vip79-game-strategy .cta-buttons .btn {
    margin: 0 15px;
    padding: 15px 35px;
    font-size: 1.2em;
    border: 2px solid #fff;
}

.page-resources-vip79-game-strategy .cta-buttons .btn-primary {
    background-color: #fff;
    color: #007bff;
}

.page-resources-vip79-game-strategy .cta-buttons .btn-primary:hover {
    background-color: #e2e6ea;
    color: #0056b3;
}

.page-resources-vip79-game-strategy .cta-buttons .btn-secondary {
    background-color: transparent;
    color: #fff;
}

.page-resources-vip79-game-strategy .cta-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.page-resources-vip79-game-strategy .app-download-img {
    max-width: 300px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-vip79-game-strategy .faq-section {
    background-color: #fff;
}

.page-resources-vip79-game-strategy .faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 20px;
}

.page-resources-vip79-game-strategy .faq-question {
    font-size: 1.4em;
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-vip79-game-strategy .faq-answer {
    font-size: 1.05em;
    color: #555;
}

.page-resources-vip79-game-strategy .conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-resources-vip79-game-strategy .conclusion-section p {
    font-size: 1.15em;
    margin-bottom: 30px;
    color: #444;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-vip79-game-strategy .hero-title {
        font-size: 2.8em;
    }
    .page-resources-vip79-game-strategy .hero-subtitle {
        font-size: 1.2em;
    }
    .page-resources-vip79-game-strategy .section-title {
        font-size: 2em;
    }
    .page-resources-vip79-game-strategy .content-wrapper {
        flex-direction: column;
    }
    .page-resources-vip79-game-strategy .content-wrapper.reverse {
        flex-direction: column;
    }
    .page-resources-vip79-game-strategy .strategy-title {
        font-size: 1.6em;
    }
    .page-resources-vip79-game-strategy .cta-buttons .btn {
        margin: 10px 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-resources-vip79-game-strategy .hero-section {
        padding: 80px 0;
    }
    .page-resources-vip79-game-strategy .hero-title {
        font-size: 2.2em;
    }
    .page-resources-vip79-game-strategy .hero-subtitle {
        font-size: 1em;
    }
    .page-resources-vip79-game-strategy .section-title {
        font-size: 1.8em;
    }
    .page-resources-vip79-game-strategy .introduction-section,
    .page-resources-vip79-game-strategy .game-strategy-section,
    .page-resources-vip79-game-strategy .optimization-section,
    .page-resources-vip79-game-strategy .cta-section,
    .page-resources-vip79-game-strategy .faq-section,
    .page-resources-vip79-game-strategy .conclusion-section {
        padding: 40px 0;
    }
    .page-resources-vip79-game-strategy .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-resources-vip79-game-strategy .app-download-img {
        max-width: 250px;
    }
}