/* style/resources-sodo-game-types.css */
.page-resources-sodo-game-types {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #F8F8F8;
}

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

.page-resources-sodo-game-types__hero-section {
    background: linear-gradient(135deg, #0A2239 0%, #E0B44B 100%);
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-sodo-game-types__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,dark_gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-sodo-game-types__hero-section .page-resources-sodo-game-types__container {
    position: relative;
    z-index: 1;
}

.page-resources-sodo-game-types__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-sodo-game-types__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #E6E6E6;
}

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

.page-resources-sodo-game-types__btn--primary {
    background-color: #E0B44B;
    color: #0A2239;
    box-shadow: 0 4px 15px rgba(224, 180, 75, 0.4);
}

.page-resources-sodo-game-types__btn--primary:hover {
    background-color: #F0C45B;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224, 180, 75, 0.6);
}

.page-resources-sodo-game-types__btn--secondary {
    background-color: #0A2239;
    color: #E0B44B;
    border: 2px solid #E0B44B;
}

.page-resources-sodo-game-types__btn--secondary:hover {
    background-color: #1A3A56;
    color: #F0C45B;
    border-color: #F0C45B;
}

.page-resources-sodo-game-types__btn--tertiary {
    background-color: transparent;
    color: #0A2239;
    border: 2px solid #0A2239;
}

.page-resources-sodo-game-types__btn--tertiary:hover {
    background-color: #0A2239;
    color: #F8F8F8;
}

.page-resources-sodo-game-types__btn--outline {
    background-color: transparent;
    color: #E0B44B;
    border: 2px solid #E0B44B;
}

.page-resources-sodo-game-types__btn--outline:hover {
    background-color: #E0B44B;
    color: #0A2239;
}

.page-resources-sodo-game-types__section {
    padding: 80px 0;
}

.page-resources-sodo-game-types__section:nth-of-type(even) {
    background-color: #F0F0F0;
}

.page-resources-sodo-game-types__section-title {
    font-size: 2.8em;
    color: #0A2239;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-resources-sodo-game-types__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #555;
}

.page-resources-sodo-game-types__about .page-resources-sodo-game-types__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-resources-sodo-game-types__about .page-resources-sodo-game-types__text-content {
    flex: 1;
}

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

.page-resources-sodo-game-types__about .page-resources-sodo-game-types__image-container {
    flex: 1;
    text-align: center;
}

.page-resources-sodo-game-types__about .page-resources-sodo-game-types__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.page-resources-sodo-game-types__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.page-resources-sodo-game-types__game-title {
    font-size: 1.8em;
    color: #0A2239;
    margin-bottom: 15px;
}

.page-resources-sodo-game-types__game-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-resources-sodo-game-types__game-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.page-resources-sodo-game-types__game-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #444;
    font-size: 0.95em;
}

.page-resources-sodo-game-types__game-features .icon-check {
    color: #E0B44B;
    margin-right: 10px;
    font-size: 1.2em;
    /* Placeholder for a checkmark icon, would be replaced by actual icon font or SVG */
}

.page-resources-sodo-game-types__btn--play {
    background-color: #E0B44B;
    color: #0A2239;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
}

.page-resources-sodo-game-types__btn--play:hover {
    background-color: #F0C45B;
}

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

.page-resources-sodo-game-types__advantage-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-resources-sodo-game-types__advantage-item:hover {
    transform: translateY(-5px);
}

.page-resources-sodo-game-types__icon-wrapper {
    background-color: #0A2239;
    color: #E0B44B;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 2.5em;
    /* Placeholder for icons */
}

.page-resources-sodo-game-types__advantage-title {
    font-size: 1.6em;
    color: #0A2239;
    margin-bottom: 15px;
}

.page-resources-sodo-game-types__advantage-item p {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-resources-sodo-game-types__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
    border-radius: 5px;
    background-color: #E0B44B;
    color: #0A2239;
}

.page-resources-sodo-game-types__btn--small:hover {
    background-color: #F0C45B;
}

.page-resources-sodo-game-types__responsible-gambling {
    background-color: #0A2239;
    color: #E6E6E6;
    text-align: center;
}

.page-resources-sodo-game-types__responsible-gambling .page-resources-sodo-game-types__section-title {
    color: #E0B44B;
}

.page-resources-sodo-game-types__responsible-gambling .page-resources-sodo-game-types__section-title::after {
    background-color: #E6E6E6;
}

.page-resources-sodo-game-types__responsible-gambling .page-resources-sodo-game-types__description,
.page-resources-sodo-game-types__responsible-gambling p {
    color: #CCCCCC;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05em;
    margin-bottom: 25px;
}

.page-resources-sodo-game-types__cta-banner {
    background: linear-gradient(135deg, #0A2239, #1A3A56);
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
}

.page-resources-sodo-game-types__cta-banner .page-resources-sodo-game-types__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-resources-sodo-game-types__cta-content {
    flex: 2;
    text-align: left;
}

.page-resources-sodo-game-types__cta-title {
    font-size: 2.5em;
    color: #E0B44B;
    margin-bottom: 15px;
}

.page-resources-sodo-game-types__cta-text {
    font-size: 1.2em;
    color: #E6E6E6;
    margin-bottom: 30px;
}

.page-resources-sodo-game-types__cta-buttons .page-resources-sodo-game-types__btn {
    margin-right: 20px;
}

.page-resources-sodo-game-types__cta-image {
    flex: 1;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-sodo-game-types__main-title {
        font-size: 2.8em;
    }
    .page-resources-sodo-game-types__subtitle {
        font-size: 1.2em;
    }
    .page-resources-sodo-game-types__section-title {
        font-size: 2.2em;
    }
    .page-resources-sodo-game-types__about .page-resources-sodo-game-types__content-wrapper {
        flex-direction: column;
    }
    .page-resources-sodo-game-types__cta-banner .page-resources-sodo-game-types__container {
        flex-direction: column;
        text-align: center;
    }
    .page-resources-sodo-game-types__cta-content {
        text-align: center;
    }
    .page-resources-sodo-game-types__cta-buttons .page-resources-sodo-game-types__btn {
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .page-resources-sodo-game-types__hero-section {
        padding: 80px 0;
    }
    .page-resources-sodo-game-types__main-title {
        font-size: 2.2em;
    }
    .page-resources-sodo-game-types__subtitle {
        font-size: 1em;
    }
    .page-resources-sodo-game-types__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-sodo-game-types__section {
        padding: 60px 0;
    }
    .page-resources-sodo-game-types__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-resources-sodo-game-types__description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-resources-sodo-game-types__game-grid,
    .page-resources-sodo-game-types__advantage-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-sodo-game-types__cta-title {
        font-size: 2em;
    }
    .page-resources-sodo-game-types__cta-text {
        font-size: 1em;
    }
    .page-resources-sodo-game-types__cta-image {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .page-resources-sodo-game-types__hero-section {
        padding: 60px 0;
    }
    .page-resources-sodo-game-types__main-title {
        font-size: 1.8em;
    }
    .page-resources-sodo-game-types__subtitle {
        font-size: 0.9em;
    }
    .page-resources-sodo-game-types__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-resources-sodo-game-types__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .page-resources-sodo-game-types__game-card,
    .page-resources-sodo-game-types__advantage-item {
        padding: 20px;
    }
    .page-resources-sodo-game-types__game-title {
        font-size: 1.5em;
    }
    .page-resources-sodo-game-types__advantage-title {
        font-size: 1.3em;
    }
    .page-resources-sodo-game-types__cta-title {
        font-size: 1.8em;
    }
    .page-resources-sodo-game-types__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-resources-sodo-game-types__cta-buttons .page-resources-sodo-game-types__btn {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        max-width: 250px;
    }
}