/* style/index-vin7777-featured-games.css */

:root {
    --primary-color: #0A192F;
    --secondary-color: #FFD700;
    --text-light: #E0E0E0;
    --text-dark: #2C3E50; /* A darker shade for contrast on light gold */
    --bg-dark-section: #0C2340;
    --bg-light-section: #F8F8F8;
    --border-color: #334756;
    --highlight-color-text: #FFD700; /* Gold for highlighting text */
}

.page-index-vin7777-featured-games {
    font-family: 'Arial', sans-serif;
    color: var(--text-light);
    background-color: var(--primary-color);
    line-height: 1.6;
}

.page-index-vin7777-featured-games .section-padding {
    padding: 60px 0;
}

.page-index-vin7777-featured-games .section-dark-bg {
    background-color: var(--bg-dark-section);
}

.page-index-vin7777-featured-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-vin7777-featured-games__text-center {
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-vin7777-featured-games__mt-40 {
    margin-top: 40px;
}

.page-index-vin7777-featured-games__section-title {
    font-size: 2.8em;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.page-index-vin7777-featured-games__section-title .highlight {
    color: var(--secondary-color);
}

.page-index-vin7777-featured-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

/* Hero Section */
.page-index-vin7777-featured-games__hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.page-index-vin7777-featured-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
}

.page-index-vin7777-featured-games__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.page-index-vin7777-featured-games__hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
    max-width: 900px;
    padding: 20px;
}

.page-index-vin7777-featured-games__hero-title {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-index-vin7777-featured-games__hero-title .highlight {
    color: var(--secondary-color);
}

.page-index-vin7777-featured-games__hero-description {
    font-size: 1.5em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-index-vin7777-featured-games__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-index-vin7777-featured-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

.page-index-vin7777-featured-games__btn--primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.page-index-vin7777-featured-games__btn--primary:hover {
    background-color: darken(var(--secondary-color), 10%);
    transform: translateY(-3px);
    color: var(--primary-color);
}

.page-index-vin7777-featured-games__btn--secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.page-index-vin7777-featured-games__btn--secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.page-index-vin7777-featured-games__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Intro Section Features */
.page-index-vin7777-featured-games__grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-vin7777-featured-games__feature-item {
    background-color: var(--bg-dark-section);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-index-vin7777-featured-games__feature-item:hover {
    transform: translateY(-5px);
}

.page-index-vin7777-featured-games__feature-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-index-vin7777-featured-games__feature-description {
    font-size: 1em;
    color: var(--text-light);
}

/* Games Showcase */
.page-index-vin7777-featured-games__game-category {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.page-index-vin7777-featured-games__game-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-index-vin7777-featured-games__category-title {
    font-size: 2.2em;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-index-vin7777-featured-games__category-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 1.5px;
}

.page-index-vin7777-featured-games__game-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-index-vin7777-featured-games__game-content--reverse {
    flex-direction: row-reverse;
}

.page-index-vin7777-featured-games__game-image {
    flex: 1 1 45%;
    max-width: 550px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    height: auto;
}

.page-index-vin7777-featured-games__game-description {
    flex: 1 1 45%;
    color: var(--text-light);
}

.page-index-vin7777-featured-games__game-description p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-index-vin7777-featured-games__game-description ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-index-vin7777-featured-games__game-description ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05em;
}

.page-index-vin7777-featured-games__game-description ul li::before {
    content: '★';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

/* VIP Section */
.page-index-vin7777-featured-games__grid-vip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-vin7777-featured-games__vip-item {
    background-color: var(--bg-dark-section);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-index-vin7777-featured-games__vip-item:hover {
    transform: translateY(-5px);
}

.page-index-vin7777-featured-games__vip-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--secondary-color));
}

.page-index-vin7777-featured-games__vip-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-index-vin7777-featured-games__vip-description {
    font-size: 1em;
    color: var(--text-light);
}

/* Get Started Section */
.page-index-vin7777-featured-games__grid-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-vin7777-featured-games__step-item {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-index-vin7777-featured-games__step-item:hover {
    transform: translateY(-5px);
}

.page-index-vin7777-featured-games__step-number {
    font-size: 3em;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-index-vin7777-featured-games__step-title {
    font-size: 1.8em;
    color: var(--text-light);
    margin-bottom: 10px;
}

.page-index-vin7777-featured-games__step-description {
    font-size: 1em;
    color: var(--text-light);
}

/* Responsible Gaming Section */
.page-index-vin7777-featured-games__grid-responsible {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-vin7777-featured-games__responsible-item {
    background-color: var(--bg-dark-section);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-index-vin7777-featured-games__responsible-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-index-vin7777-featured-games__responsible-description {
    font-size: 1em;
    color: var(--text-light);
}

/* FAQ Section */
.page-index-vin7777-featured-games__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-vin7777-featured-games__faq-item {
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-index-vin7777-featured-games__faq-question {
    font-size: 1.4em;
    color: var(--text-light);
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-index-vin7777-featured-games__faq-question:hover {
    background-color: var(--bg-dark-section);
}

.page-index-vin7777-featured-games__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-index-vin7777-featured-games__faq-item.active .page-index-vin7777-featured-games__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-vin7777-featured-games__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: var(--bg-dark-section);
    color: var(--text-light);
}

.page-index-vin7777-featured-games__faq-item.active .page-index-vin7777-featured-games__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding: 20px 25px;
}

.page-index-vin7777-featured-games__faq-answer p {
    margin: 0;
    font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-vin7777-featured-games__hero-title {
        font-size: 3.5em;
    }
    .page-index-vin7777-featured-games__hero-description {
        font-size: 1.3em;
    }
    .page-index-vin7777-featured-games__section-title {
        font-size: 2.5em;
    }
    .page-index-vin7777-featured-games__game-content, 
    .page-index-vin7777-featured-games__game-content--reverse {
        flex-direction: column;
    }
    .page-index-vin7777-featured-games__game-image,
    .page-index-vin7777-featured-games__game-description {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-index-vin7777-featured-games__hero-title {
        font-size: 2.8em;
    }
    .page-index-vin7777-featured-games__hero-description {
        font-size: 1.1em;
    }
    .page-index-vin7777-featured-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-vin7777-featured-games__btn {
        width: 100%;
        max-width: 300px;
    }
    .page-index-vin7777-featured-games__section-title {
        font-size: 2em;
    }
    .page-index-vin7777-featured-games__category-title {
        font-size: 1.8em;
    }
    .page-index-vin7777-featured-games__feature-title,
    .page-index-vin7777-featured-games__vip-title,
    .page-index-vin7777-featured-games__step-title,
    .page-index-vin7777-featured-games__responsible-title {
        font-size: 1.5em;
    }
    .page-index-vin7777-featured-games__faq-question {
        font-size: 1.2em;
        padding: 15px 20px;
    }
    .page-index-vin7777-featured-games__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-index-vin7777-featured-games__hero-title {
        font-size: 2em;
    }
    .page-index-vin7777-featured-games__hero-description {
        font-size: 1em;
    }
    .page-index-vin7777-featured-games__section-title {
        font-size: 1.8em;
    }
    .page-index-vin7777-featured-games__category-title {
        font-size: 1.5em;
    }
    .page-index-vin7777-featured-games__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-index-vin7777-featured-games__vip-icon {
        width: 60px;
        height: 60px;
    }
}