/* style/games-card-games-strategy.css */

/* Base styles for the page content */
.page-games-card-games-strategy {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-games-card-games-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-games-card-games-strategy__section {
    padding: 60px 0;
    text-align: center;
}

.page-games-card-games-strategy__section:nth-of-type(odd) {
    background-color: #f1f1f1;
}

.page-games-card-games-strategy__section-title {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-games-card-games-strategy__section-title .highlight {
    color: #FFCC00;
}

.page-games-card-games-strategy p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.page-games-card-games-strategy ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-games-card-games-strategy ul li {
    background: #fff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFCC00;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: #333;
}

.page-games-card-games-strategy ul li strong {
    color: #003366;
}

.page-games-card-games-strategy .highlight {
    color: #003366;
    font-weight: bold;
}

/* Hero Section */
.page-games-card-games-strategy__hero {
    background: linear-gradient(135deg, #003366, #001a33);
    color: #FFFFFF;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-card-games-strategy__hero-content {
    z-index: 1;
    max-width: 900px;
}

.page-games-card-games-strategy__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-games-card-games-strategy__hero-title .highlight {
    color: #FFCC00;
}

.page-games-card-games-strategy__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-games-card-games-strategy__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-games-card-games-strategy__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    white-space: nowrap;
}

.page-games-card-games-strategy__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-games-card-games-strategy__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-games-card-games-strategy__btn--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-games-card-games-strategy__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-3px);
}

.page-games-card-games-strategy__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-games-card-games-strategy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* Game Strategies Section */
.page-games-card-games-strategy__game-strategies {
    background-color: #FFFFFF;
}

.page-games-card-games-strategy__strategy-item {
    margin-bottom: 60px;
    text-align: left;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    background-color: #fdfdfd;
    position: relative;
}

.page-games-card-games-strategy__strategy-item:last-child {
    margin-bottom: 0;
}

.page-games-card-games-strategy__strategy-title {
    font-size: 2em;
    color: #003366;
    margin-bottom: 20px;
    border-bottom: 3px solid #FFCC00;
    display: inline-block;
    padding-bottom: 10px;
}

.page-games-card-games-strategy__strategy-image-wrapper {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    width: 300px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-games-card-games-strategy__strategy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-games-card-games-strategy__strategy-item p {
    font-size: 1.05em;
    color: #444;
}

.page-games-card-games-strategy__strategy-item ul {
    list-style: disc;
    margin-left: 20px;
    padding-left: 20px;
    max-width: none;
}

.page-games-card-games-strategy__strategy-item ul li {
    background: none;
    border-left: none;
    box-shadow: none;
    padding: 5px 0;
    margin-bottom: 5px;
    color: #444;
}

.page-games-card-games-strategy__strategy-item ul li ul {
    margin-top: 10px;
    margin-left: 20px;
    list-style: circle;
}

/* General Tips Section */
.page-games-card-games-strategy__general-tips {
    background-color: #e6f0f7; /* Light blueish background */
}

.page-games-card-games-strategy__general-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-games-card-games-strategy__tip-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-games-card-games-strategy__tip-card:hover {
    transform: translateY(-10px);
}

.page-games-card-games-strategy__tip-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.1));
}

.page-games-card-games-strategy__tip-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-games-card-games-strategy__tip-card p {
    font-size: 1em;
    color: #555;
}

/* CTA Section */
.page-games-card-games-strategy__cta {
    background: linear-gradient(90deg, #003366, #004d99);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.page-games-card-games-strategy__cta-content {
    z-index: 1;
    position: relative;
}

.page-games-card-games-strategy__cta .page-games-card-games-strategy__section-title {
    color: #FFCC00;
    font-size: 2.8em;
}

.page-games-card-games-strategy__cta p {
    color: #e0e0e0;
    font-size: 1.3em;
    margin-bottom: 40px;
}

.page-games-card-games-strategy__cta .highlight {
    color: #FFCC00;
}

.page-games-card-games-strategy__cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-games-card-games-strategy__cta-image {
    position: absolute;
    bottom: -20px;
    right: -50px;
    width: 400px;
    height: auto;
    opacity: 0.3;
    z-index: 0;
    transform: rotate(15deg);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-games-card-games-strategy__hero-title {
        font-size: 2.8em;
    }
    .page-games-card-games-strategy__hero-subtitle {
        font-size: 1.3em;
    }
    .page-games-card-games-strategy__section-title {
        font-size: 2em;
    }
    .page-games-card-games-strategy__strategy-image-wrapper {
        float: none;
        margin: 0 auto 20px auto;
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    .page-games-card-games-strategy__strategy-item {
        text-align: center;
    }
    .page-games-card-games-strategy__strategy-item ul {
        text-align: left;
    }
    .page-games-card-games-strategy__hero-actions, .page-games-card-games-strategy__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-games-card-games-strategy__btn {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-games-card-games-strategy__hero {
        padding: 80px 15px;
    }
    .page-games-card-games-strategy__hero-title {
        font-size: 2.2em;
    }
    .page-games-card-games-strategy__hero-subtitle {
        font-size: 1.1em;
    }
    .page-games-card-games-strategy__section {
        padding: 40px 0;
    }
    .page-games-card-games-strategy__section-title {
        font-size: 1.8em;
    }
    .page-games-card-games-strategy__tip-card {
        padding: 20px;
    }
    .page-games-card-games-strategy__cta .page-games-card-games-strategy__section-title {
        font-size: 2.2em;
    }
    .page-games-card-games-strategy__cta p {
        font-size: 1.1em;
    }
    .page-games-card-games-strategy__cta-image {
        width: 300px;
        right: -80px;
    }
}

@media (max-width: 480px) {
    .page-games-card-games-strategy__hero-title {
        font-size: 1.8em;
    }
    .page-games-card-games-strategy__hero-subtitle {
        font-size: 1em;
    }
    .page-games-card-games-strategy__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-games-card-games-strategy__section-title {
        font-size: 1.5em;
    }
    .page-games-card-games-strategy__cta .page-games-card-games-strategy__section-title {
        font-size: 1.8em;
    }
    .page-games-card-games-strategy__cta p {
        font-size: 1em;
    }
    .page-games-card-games-strategy__cta-image {
        width: 200px;
        right: -100px;
        bottom: -40px;
    }
    .page-games-card-games-strategy__strategy-item ul li {
        padding: 10px 15px;
    }
}