/* style/game-strategy-guides.css */

/* Biến CSS cho màu sắc */
:root {
    --page-game-strategy-guides-primary-color: #007bff;
    --page-game-strategy-guides-secondary-color: #ffc107;
    --page-game-strategy-guides-dark-text: #212529;
    --page-game-strategy-guides-light-text: #ffffff;
    --page-game-strategy-guides-background-light: #f8f9fa;
    --page-game-strategy-guides-background-dark: #343a40;
    --page-game-strategy-guides-border-color: #dee2e6;
    --page-game-strategy-guides-hover-primary: #0056b3;
    --page-game-strategy-guides-hover-secondary: #e0a800;
}

.page-game-strategy-guides {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-game-strategy-guides-dark-text);
    background-color: var(--page-game-strategy-guides-background-light);
}

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

.page-game-strategy-guides__hero {
    background: linear-gradient(135deg, var(--page-game-strategy-guides-primary-color) 0%, #0056b3 100%);
    color: var(--page-game-strategy-guides-light-text);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-strategy-guides__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-game-strategy-guides-light-text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.page-game-strategy-guides__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-game-strategy-guides__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.page-game-strategy-guides__btn--primary {
    background-color: var(--page-game-strategy-guides-secondary-color);
    color: var(--page-game-strategy-guides-dark-text);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-game-strategy-guides__btn--primary:hover {
    background-color: var(--page-game-strategy-guides-hover-secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-game-strategy-guides__btn--secondary {
    background-color: transparent;
    color: var(--page-game-strategy-guides-light-text);
    border: 2px solid var(--page-game-strategy-guides-light-text);
}

.page-game-strategy-guides__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.page-game-strategy-guides__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-game-strategy-guides__section {
    padding: 60px 0;
    background-color: var(--page-game-strategy-guides-background-light);
}

.page-game-strategy-guides__section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-game-strategy-guides__section-title {
    font-size: 2.5em;
    color: var(--page-game-strategy-guides-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-game-strategy-guides__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-game-strategy-guides-secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-game-strategy-guides__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-game-strategy-guides__section strong {
    color: var(--page-game-strategy-guides-primary-color);
}

.page-game-strategy-guides__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-game-strategy-guides__feature-item {
    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, box-shadow 0.3s ease;
    border-top: 5px solid var(--page-game-strategy-guides-secondary-color);
}

.page-game-strategy-guides__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-game-strategy-guides__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.page-game-strategy-guides__feature-title {
    font-size: 1.5em;
    color: var(--page-game-strategy-guides-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-strategy-guides__feature-item p {
    font-size: 1em;
    color: var(--page-game-strategy-guides-dark-text);
    text-align: center;
}

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

.page-game-strategy-guides__strategy-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-game-strategy-guides__strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-game-strategy-guides__strategy-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--page-game-strategy-guides-border-color);
}

.page-game-strategy-guides__strategy-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-game-strategy-guides__strategy-title {
    font-size: 1.4em;
    color: var(--page-game-strategy-guides-primary-color);
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.3;
}

.page-game-strategy-guides__strategy-title a {
    color: var(--page-game-strategy-guides-primary-color);
    text-decoration: none;
}

.page-game-strategy-guides__strategy-title a:hover {
    text-decoration: underline;
}

.page-game-strategy-guides__strategy-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-strategy-guides__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
    align-self: flex-start;
    background-color: var(--page-game-strategy-guides-secondary-color);
    color: var(--page-game-strategy-guides-dark-text);
}

.page-game-strategy-guides__btn--small:hover {
    background-color: var(--page-game-strategy-guides-hover-secondary);
}

.page-game-strategy-guides__list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.page-game-strategy-guides__list li {
    background-color: #ffffff;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 5px solid var(--page-game-strategy-guides-primary-color);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    transition: all 0.2s ease;
}

.page-game-strategy-guides__list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-strategy-guides__list li strong {
    color: var(--page-game-strategy-guides-primary-color);
}

.page-game-strategy-guides__section--cta {
    background-color: var(--page-game-strategy-guides-primary-color);
    color: var(--page-game-strategy-guides-light-text);
    text-align: center;
    padding: 80px 0;
}

.page-game-strategy-guides__section--cta .page-game-strategy-guides__section-title {
    color: var(--page-game-strategy-guides-light-text);
}

.page-game-strategy-guides__section--cta .page-game-strategy-guides__section-title::after {
    background-color: var(--page-game-strategy-guides-secondary-color);
}

.page-game-strategy-guides__section--cta p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-strategy-guides__hero-title {
        font-size: 2.8em;
    }
    .page-game-strategy-guides__hero-subtitle {
        font-size: 1.2em;
    }
    .page-game-strategy-guides__section-title {
        font-size: 2em;
    }
    .page-game-strategy-guides__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-game-strategy-guides__strategy-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-game-strategy-guides__hero {
        padding: 80px 0;
    }
    .page-game-strategy-guides__hero-title {
        font-size: 2.2em;
    }
    .page-game-strategy-guides__hero-subtitle {
        font-size: 1em;
    }
    .page-game-strategy-guides__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-strategy-guides__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-game-strategy-guides__section {
        padding: 40px 0;
    }
    .page-game-strategy-guides__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-game-strategy-guides__section p {
        font-size: 1em;
    }
    .page-game-strategy-guides__feature-grid, .page-game-strategy-guides__strategy-list {
        grid-template-columns: 1fr;
    }
    .page-game-strategy-guides__feature-item, .page-game-strategy-guides__strategy-item {
        padding: 25px;
    }
    .page-game-strategy-guides__strategy-image {
        height: 180px;
    }
    .page-game-strategy-guides__section--cta p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-game-strategy-guides__hero-title {
        font-size: 1.8em;
    }
    .page-game-strategy-guides__hero-subtitle {
        font-size: 0.9em;
    }
    .page-game-strategy-guides__section-title {
        font-size: 1.5em;
    }
    .page-game-strategy-guides__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-game-strategy-guides__btn--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
    .page-game-strategy-guides__strategy-content {
        padding: 15px;
    }
    .page-game-strategy-guides__strategy-title {
        font-size: 1.2em;
    }
    .page-game-strategy-guides__list li {
        padding: 15px 20px;
        font-size: 0.95em;
    }
}