/* style/resources-top-68gb-card-game-strategies.css */

:root {
    --page-primary-color: #0A192F;
    --page-accent-color: #64FFDA;
    --page-text-dark: #333333;
    --page-text-light: #ffffff;
    --page-background-light: #f8f8f8;
    --page-background-dark-section: #0f243d; /* Slightly lighter than primary for section bg */
    --page-border-color: #e0e0e0;
}

.page-resources-top-68gb-card-game-strategies {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-dark);
    background-color: var(--page-background-light);
}

.page-resources-top-68gb-card-game-strategies__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-top-68gb-card-game-strategies__hero-section {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, var(--page-background-dark-section) 100%);
    color: var(--page-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-top-68gb-card-game-strategies__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-text-light);
    animation: fadeInDown 1s ease-out;
}

.page-resources-top-68gb-card-game-strategies__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: var(--page-accent-color);
    animation: fadeInUp 1s ease-out 0.3s;
}

.page-resources-top-68gb-card-game-strategies__hero-cta-btn {
    display: inline-block;
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: zoomIn 1s ease-out 0.6s;
}

.page-resources-top-68gb-card-game-strategies__hero-cta-btn:hover {
    background-color: #46b399; /* Darker shade of accent */
    transform: translateY(-3px);
}

.page-resources-top-68gb-card-game-strategies__hero-image {
    max-width: 80%;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-out 0.9s;
}

.page-resources-top-68gb-card-game-strategies__section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.page-resources-top-68gb-card-game-strategies__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-accent-color);
    border-radius: 2px;
}

.page-resources-top-68gb-card-game-strategies__intro-section,
.page-resources-top-68gb-card-game-strategies__strategy-section,
.page-resources-top-68gb-card-game-strategies__get-started-section {
    padding: 60px 0;
}

.page-resources-top-68gb-card-game-strategies__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--page-text-dark);
}

.page-resources-top-68gb-card-game-strategies__why-choose-section {
    background-color: var(--page-background-dark-section);
    color: var(--page-text-light);
    padding: 60px 0;
    text-align: center;
}

.page-resources-top-68gb-card-game-strategies__why-choose-section .page-resources-top-68gb-card-game-strategies__section-title {
    color: var(--page-text-light);
}

.page-resources-top-68gb-card-game-strategies__why-choose-section .page-resources-top-68gb-card-game-strategies__section-title::after {
    background-color: var(--page-accent-color);
}

.page-resources-top-68gb-card-game-strategies__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-top-68gb-card-game-strategies__feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-resources-top-68gb-card-game-strategies__feature-item:hover {
    transform: translateY(-10px);
}

.page-resources-top-68gb-card-game-strategies__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(1) drop-shadow(0 0 5px var(--page-accent-color));
}

.page-resources-top-68gb-card-game-strategies__feature-title {
    font-size: 1.8em;
    color: var(--page-accent-color);
    margin-bottom: 15px;
}

.page-resources-top-68gb-card-game-strategies__feature-description {
    font-size: 1em;
    color: var(--page-text-light);
}

.page-resources-top-68gb-card-game-strategies__cta-btn {
    display: inline-block;
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-top-68gb-card-game-strategies__cta-btn:hover {
    background-color: #46b399;
    transform: translateY(-3px);
}

.page-resources-top-68gb-card-game-strategies__game-strategy {
    background-color: var(--page-background-light);
    border: 1px solid var(--page-border-color);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-top-68gb-card-game-strategies__game-title {
    font-size: 2em;
    color: var(--page-primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--page-accent-color);
    padding-bottom: 10px;
}

.page-resources-top-68gb-card-game-strategies__game-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-resources-top-68gb-card-game-strategies__strategy-list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.page-resources-top-68gb-card-game-strategies__strategy-list li {
    margin-bottom: 10px;
}

.page-resources-top-68gb-card-game-strategies__strategy-list li strong {
    color: var(--page-primary-color);
}

.page-resources-top-68gb-card-game-strategies__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-resources-top-68gb-card-game-strategies__cta-btn.--primary {
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
}

.page-resources-top-68gb-card-game-strategies__cta-btn.--secondary {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    border: 1px solid var(--page-accent-color);
}

.page-resources-top-68gb-card-game-strategies__cta-btn.--secondary:hover {
    background-color: #0f243d; /* Darker primary */
    border-color: #46b399;
}

.page-resources-top-68gb-card-game-strategies__cta-image {
    max-width: 60%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-top-68gb-card-game-strategies__hero-title {
        font-size: 2.8em;
    }
    .page-resources-top-68gb-card-game-strategies__hero-subtitle {
        font-size: 1.2em;
    }
    .page-resources-top-68gb-card-game-strategies__section-title {
        font-size: 2em;
    }
    .page-resources-top-68gb-card-game-strategies__game-title {
        font-size: 1.8em;
    }
    .page-resources-top-68gb-card-game-strategies__hero-image {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .page-resources-top-68gb-card-game-strategies__hero-section {
        padding: 80px 0;
    }
    .page-resources-top-68gb-card-game-strategies__hero-title {
        font-size: 2.2em;
    }
    .page-resources-top-68gb-card-game-strategies__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-top-68gb-card-game-strategies__hero-cta-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-top-68gb-card-game-strategies__section-title {
        font-size: 1.8em;
    }
    .page-resources-top-68gb-card-game-strategies__features-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-top-68gb-card-game-strategies__feature-item {
        padding: 20px;
    }
    .page-resources-top-68gb-card-game-strategies__game-title {
        font-size: 1.5em;
    }
    .page-resources-top-68gb-card-game-strategies__text-content,
    .page-resources-top-68gb-card-game-strategies__strategy-list li {
        font-size: 0.95em;
    }
    .page-resources-top-68gb-card-game-strategies__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-top-68gb-card-game-strategies__cta-image {
        max-width: 80%;
    }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}