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

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

.page-resources-nn88-game-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-nn88-game-strategy__hero {
    background: linear-gradient(135deg, #1A237E 0%, #303F9F 100%); /* Darker blue to slightly lighter blue */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-nn88-game-strategy__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,nn88,pattern_overlay]'); /* Abstract pattern overlay */
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-nn88-game-strategy__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: #FFC107; /* Accent color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-nn88-game-strategy__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

.page-resources-nn88-game-strategy__section {
    padding: 60px 0;
}

.page-resources-nn88-game-strategy__section:nth-of-type(even) {
    background-color: #f1f1f1;
}

.page-resources-nn88-game-strategy__section-title {
    font-size: 2.5em;
    color: #1A237E;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-nn88-game-strategy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFC107;
    border-radius: 2px;
}

.page-resources-nn88-game-strategy__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-nn88-game-strategy__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-resources-nn88-game-strategy__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-resources-nn88-game-strategy__text-content {
    flex: 1;
}

.page-resources-nn88-game-strategy__text-content p {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #444;
}

.page-resources-nn88-game-strategy__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-resources-nn88-game-strategy__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

.page-resources-nn88-game-strategy__image:hover {
    transform: translateY(-5px);
}

.page-resources-nn88-game-strategy__image--small {
    max-width: 300px;
    margin-right: 30px;
}

.page-resources-nn88-game-strategy__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-size: 1.1em;
    text-align: center;
}

.page-resources-nn88-game-strategy__btn--primary {
    background-color: #FFC107;
    color: #1A237E;
    border: 2px solid #FFC107;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-nn88-game-strategy__btn--primary:hover {
    background-color: #e0ac00;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-resources-nn88-game-strategy__btn--secondary {
    background-color: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-resources-nn88-game-strategy__btn--secondary:hover {
    background-color: #FFC107;
    color: #1A237E;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-nn88-game-strategy__btn--tertiary {
    background-color: #1A237E;
    color: #FFC107;
    border: 2px solid #1A237E;
}

.page-resources-nn88-game-strategy__btn--tertiary:hover {
    background-color: #2c3e50;
    border-color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-nn88-game-strategy__btn--link {
    background-color: transparent;
    color: #1A237E;
    border: none;
    padding: 10px 0;
    font-size: 1em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.page-resources-nn88-game-strategy__btn--link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.page-resources-nn88-game-strategy__btn--link:hover {
    color: #FFC107;
    transform: none;
}

.page-resources-nn88-game-strategy__btn--link:hover::after {
    transform: translateX(5px);
}

.page-resources-nn88-game-strategy__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-nn88-game-strategy__strategy-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-nn88-game-strategy__strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-nn88-game-strategy__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-nn88-game-strategy__card-title {
    font-size: 1.8em;
    color: #1A237E;
    margin-bottom: 15px;
}

.page-resources-nn88-game-strategy__card-text {
    color: #555;
    margin-bottom: 15px;
}

.page-resources-nn88-game-strategy__sub-title {
    font-size: 1.3em;
    color: #303F9F;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-resources-nn88-game-strategy__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-resources-nn88-game-strategy__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #444;
}

.page-resources-nn88-game-strategy__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFC107;
    font-weight: bold;
}

.page-resources-nn88-game-strategy__list--large li {
    font-size: 1.1em;
}

.page-resources-nn88-game-strategy__responsible-gaming-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 30px;
}

.page-resources-nn88-game-strategy__text-center {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #333;
}

.page-resources-nn88-game-strategy__call-to-action {
    background-color: #1A237E;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-resources-nn88-game-strategy__call-to-action-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-resources-nn88-game-strategy__cta-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.6));
}

.page-resources-nn88-game-strategy__call-to-action .page-resources-nn88-game-strategy__section-title {
    color: #FFC107;
    margin-bottom: 20px;
}

.page-resources-nn88-game-strategy__call-to-action .page-resources-nn88-game-strategy__section-description {
    color: #e0e0e0;
    margin-bottom: 50px;
}

.page-resources-nn88-game-strategy__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-nn88-game-strategy__hero-title {
        font-size: 2.8em;
    }
    .page-resources-nn88-game-strategy__hero-subtitle {
        font-size: 1.3em;
    }
    .page-resources-nn88-game-strategy__section-title {
        font-size: 2em;
    }
    .page-resources-nn88-game-strategy__content-wrapper {
        flex-direction: column;
    }
    .page-resources-nn88-game-strategy__content-wrapper--reverse {
        flex-direction: column-reverse;
    }
    .page-resources-nn88-game-strategy__image-wrapper {
        margin-top: 30px;
    }
    .page-resources-nn88-game-strategy__responsible-gaming-content {
        flex-direction: column;
        align-items: center;
    }
    .page-resources-nn88-game-strategy__image--small {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-resources-nn88-game-strategy__hero {
        padding: 80px 0;
    }
    .page-resources-nn88-game-strategy__hero-title {
        font-size: 2.2em;
    }
    .page-resources-nn88-game-strategy__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-nn88-game-strategy__section {
        padding: 40px 0;
    }
    .page-resources-nn88-game-strategy__section-title {
        font-size: 1.8em;
    }
    .page-resources-nn88-game-strategy__strategy-card {
        padding: 20px;
    }
    .page-resources-nn88-game-strategy__card-title {
        font-size: 1.5em;
    }
    .page-resources-nn88-game-strategy__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-nn88-game-strategy__btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-resources-nn88-game-strategy__hero-title {
        font-size: 1.8em;
    }
    .page-resources-nn88-game-strategy__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-nn88-game-strategy__section-title {
        font-size: 1.6em;
    }
    .page-resources-nn88-game-strategy__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}