/* style/resources-scv388-electronic-game-features.css */

.page-resources-scv388-electronic-game-features {
    font-family: 'Arial', sans-serif;
    color: #E5E5D1; /* Light text for dark background */
    background-color: #1A1A2E; /* Main dark background */
    line-height: 1.6;
}

.page-resources-scv388-electronic-game-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-scv388-electronic-game-features__hero-section {
    background: linear-gradient(135deg, #1A1A2E, #33334F);
    padding: 100px 0;
    text-align: center;
    color: #FFD700;
    position: relative;
    overflow: hidden;
}

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

.page-resources-scv388-electronic-game-features__hero-section > div {
    position: relative;
    z-index: 1;
}

.page-resources-scv388-electronic-game-features__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-scv388-electronic-game-features__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E5E5D1;
}

.page-resources-scv388-electronic-game-features__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-resources-scv388-electronic-game-features__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;
}

.page-resources-scv388-electronic-game-features__btn--primary {
    background-color: #FFD700; /* Accent color for primary button */
    color: #1A1A2E; /* Dark text for accent background */
    border: 2px solid #FFD700;
}

.page-resources-scv388-electronic-game-features__btn--primary:hover {
    background-color: #E5C100;
    border-color: #E5C100;
    transform: translateY(-3px);
}

.page-resources-scv388-electronic-game-features__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-scv388-electronic-game-features__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A1A2E;
    transform: translateY(-3px);
}

.page-resources-scv388-electronic-game-features__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
    background-color: #FFD700;
    color: #1A1A2E;
    border: none;
}

.page-resources-scv388-electronic-game-features__btn--small:hover {
    background-color: #E5C100;
}

.page-resources-scv388-electronic-game-features__btn--lg {
    padding: 18px 35px;
    font-size: 1.2em;
    border-radius: 10px;
    margin: 10px;
}

.page-resources-scv388-electronic-game-features__btn--outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-scv388-electronic-game-features__btn--outline:hover {
    background-color: #FFD700;
    color: #1A1A2E;
}

.page-resources-scv388-electronic-game-features__section {
    padding: 80px 0;
    text-align: center;
}

.page-resources-scv388-electronic-game-features__section:nth-of-type(even) {
    background-color: #2A2A4A; /* Slightly lighter dark background */
}

.page-resources-scv388-electronic-game-features__section-title {
    font-size: 2.8em;
    margin-bottom: 25px;
    color: #FFD700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-resources-scv388-electronic-game-features__section-description {
    font-size: 1.1em;
    color: #E5E5D1;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-resources-scv388-electronic-game-features__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-resources-scv388-electronic-game-features__grid-item {
    background-color: #1A1A2E;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid #3A3A5A;
}

.page-resources-scv388-electronic-game-features__grid-item .page-resources-scv388-electronic-game-features__img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #FFD700;
}

.page-resources-scv388-electronic-game-features__item-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-resources-scv388-electronic-game-features__grid-item p {
    color: #E5E5D1;
    font-size: 1em;
}

.page-resources-scv388-electronic-game-features__game-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-resources-scv388-electronic-game-features__game-card {
    background-color: #1A1A2E;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    overflow: hidden;
    border: 1px solid #3A3A5A;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-scv388-electronic-game-features__game-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #3A3A5A;
}

.page-resources-scv388-electronic-game-features__game-title {
    font-size: 1.6em;
    color: #FFD700;
    margin: 20px 15px 10px;
}

.page-resources-scv388-electronic-game-features__game-description {
    color: #E5E5D1;
    font-size: 0.95em;
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-resources-scv388-electronic-game-features__game-card .page-resources-scv388-electronic-game-features__btn {
    margin-bottom: 20px;
    align-self: center;
}

.page-resources-scv388-electronic-game-features__flex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.page-resources-scv388-electronic-game-features__flex-item {
    background-color: #1A1A2E;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
    border: 1px solid #3A3A5A;
}

.page-resources-scv388-electronic-game-features__icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-resources-scv388-electronic-game-features__flex-item p {
    color: #E5E5D1;
    font-size: 1em;
}

.page-resources-scv388-electronic-game-features__cta {
    background: linear-gradient(90deg, #FFD700, #E5C100);
    padding: 100px 0;
    color: #1A1A2E;
}

.page-resources-scv388-electronic-game-features__cta-content {
    max-width: 900px;
}

.page-resources-scv388-electronic-game-features__cta-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #1A1A2E;
    text-shadow: none;
}

.page-resources-scv388-electronic-game-features__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #33334F;
}

.page-resources-scv388-electronic-game-features__cta .page-resources-scv388-electronic-game-features__btn--lg {
    background-color: #1A1A2E;
    color: #FFD700;
    border: 2px solid #1A1A2E;
}

.page-resources-scv388-electronic-game-features__cta .page-resources-scv388-electronic-game-features__btn--lg:hover {
    background-color: #33334F;
    border-color: #33334F;
}

.page-resources-scv388-electronic-game-features__cta .page-resources-scv388-electronic-game-features__btn--outline {
    color: #1A1A2E;
    border-color: #1A1A2E;
}

.page-resources-scv388-electronic-game-features__cta .page-resources-scv388-electronic-game-features__btn--outline:hover {
    background-color: #1A1A2E;
    color: #FFD700;
}

.page-resources-scv388-electronic-game-features__faq-item {
    background-color: #1A1A2E;
    border: 1px solid #3A3A5A;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-scv388-electronic-game-features__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-resources-scv388-electronic-game-features__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-resources-scv388-electronic-game-features__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-resources-scv388-electronic-game-features__faq-answer {
    color: #E5E5D1;
    font-size: 1em;
    margin-top: 15px;
    display: none;
    padding-left: 10px;
    border-left: 3px solid #FFD700;
}

.page-resources-scv388-electronic-game-features__faq-answer.active {
    display: block;
}

@media (max-width: 992px) {
    .page-resources-scv388-electronic-game-features__hero-title {
        font-size: 2.8em;
    }
    .page-resources-scv388-electronic-game-features__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-scv388-electronic-game-features__section-title {
        font-size: 2.2em;
    }
    .page-resources-scv388-electronic-game-features__flex-item {
        flex: 1 1 calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
}

@media (max-width: 768px) {
    .page-resources-scv388-electronic-game-features__hero-title {
        font-size: 2.2em;
    }
    .page-resources-scv388-electronic-game-features__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-scv388-electronic-game-features__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-scv388-electronic-game-features__btn--lg {
        width: 100%;
        max-width: 300px;
    }
    .page-resources-scv388-electronic-game-features__section {
        padding: 60px 0;
    }
    .page-resources-scv388-electronic-game-features__section-title {
        font-size: 1.8em;
    }
    .page-resources-scv388-electronic-game-features__cta-title {
        font-size: 2.5em;
    }
    .page-resources-scv388-electronic-game-features__grid-layout, 
    .page-resources-scv388-electronic-game-features__game-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-resources-scv388-electronic-game-features__hero-title {
        font-size: 1.8em;
    }
    .page-resources-scv388-electronic-game-features__hero-subtitle {
        font-size: 0.9em;
    }
    .page-resources-scv388-electronic-game-features__hero-actions .page-resources-scv388-electronic-game-features__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-resources-scv388-electronic-game-features__section-title {
        font-size: 1.6em;
    }
    .page-resources-scv388-electronic-game-features__item-title {
        font-size: 1.4em;
    }
    .page-resources-scv388-electronic-game-features__cta-title {
        font-size: 2em;
    }
    .page-resources-scv388-electronic-game-features__faq-question {
        font-size: 1.2em;
    }
}