/* style/game-lobby-game-features.css */
.page-game-lobby-game-features {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0; /* Light gray for general text */
    background-color: #1A202C; /* Main background color */
}

.page-game-lobby-game-features .page-game-lobby-game-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-lobby-game-features .highlight {
    color: #FFD700; /* Auxiliary color for highlights */
    font-weight: bold;
}

/* Hero Section */
.page-game-lobby-game-features__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a6b 100%); /* Gradient with main color */
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-game-lobby-game-features__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: page-game-lobby-game-features__pulse 4s infinite alternate;
}

.page-game-lobby-game-features__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    animation: page-game-lobby-game-features__pulse 5s infinite alternate reverse;
}

@keyframes page-game-lobby-game-features__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-game-lobby-game-features__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-game-lobby-game-features__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

/* Sections */
.page-game-lobby-game-features__section {
    padding: 80px 0;
}

.page-game-lobby-game-features__section--dark {
    background-color: #1A202C;
    color: #e0e0e0;
}

.page-game-lobby-game-features__section--light {
    background-color: #2D3748;
    color: #e0e0e0;
}

.page-game-lobby-game-features__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.page-game-lobby-game-features__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-game-lobby-game-features__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #cccccc;
}

/* Grid Layouts */
.page-game-lobby-game-features__grid, .page-game-lobby-game-features__features-list, .page-game-lobby-game-features__promo-grid, .page-game-lobby-game-features__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-lobby-game-features__grid-item, .page-game-lobby-game-features__feature-item, .page-game-lobby-game-features__promo-item, .page-game-lobby-game-features__step-item {
    background-color: #2D3748;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-lobby-game-features__grid-item:hover, .page-game-lobby-game-features__feature-item:hover, .page-game-lobby-game-features__promo-item:hover, .page-game-lobby-game-features__step-item:hover {
    transform: translateY(-10px);
    background-color: #3a4a6b;
}

.page-game-lobby-game-features__grid-img, .page-game-lobby-game-features__promo-img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #FFD700;
}

.page-game-lobby-game-features__feature-icon, .page-game-lobby-game-features__list-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-lobby-game-features__grid-title, .page-game-lobby-game-features__feature-title, .page-game-lobby-game-features__promo-title, .page-game-lobby-game-features__step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-lobby-game-features__grid-text, .page-game-lobby-game-features__feature-text, .page-game-lobby-game-features__promo-text, .page-game-lobby-game-features__step-text {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 20px;
}

/* Buttons */
.page-game-lobby-game-features__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    margin: 10px;
}

.page-game-lobby-game-features__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
    border: 2px solid #FFD700;
}

.page-game-lobby-game-features__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-game-lobby-game-features__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-lobby-game-features__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* Lists */
.page-game-lobby-game-features__commitment-list, .page-game-lobby-game-features__support-list, .page-game-lobby-game-features__community-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-game-lobby-game-features__commitment-list li, .page-game-lobby-game-features__support-list li, .page-game-lobby-game-features__community-list li {
    background-color: #2D3748;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    border-left: 5px solid #FFD700;
}

.page-game-lobby-game-features__commitment-list li:hover, .page-game-lobby-game-features__support-list li:hover, .page-game-lobby-game-features__community-list li:hover {
    transform: translateX(5px);
    background-color: #3a4a6b;
}

.page-game-lobby-game-features__list-icon {
    margin-right: 15px;
    flex-shrink: 0;
}

/* Call to Action Bottom */
.page-game-lobby-game-features__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #1A202C;
    border-radius: 10px;
    border: 1px solid #FFD700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.page-game-lobby-game-features__cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Final CTA Section */
.page-game-lobby-game-features__cta-final {
    background: linear-gradient(90deg, #FFD700 0%, #e6c200 100%);
    padding: 80px 0;
    text-align: center;
    color: #1A202C;
}

.page-game-lobby-game-features__cta-final-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #1A202C;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.page-game-lobby-game-features__cta-final-text {
    font-size: 1.4em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #333333;
}

.page-game-lobby-game-features__cta-final .page-game-lobby-game-features__btn--primary {
    background-color: #1A202C;
    color: #FFD700;
    border-color: #1A202C;
}

.page-game-lobby-game-features__cta-final .page-game-lobby-game-features__btn--primary:hover {
    background-color: #3a4a6b;
    color: #FFD700;
    border-color: #3a4a6b;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.page-game-lobby-game-features__cta-final .page-game-lobby-game-features__btn--secondary {
    background-color: transparent;
    color: #1A202C;
    border-color: #1A202C;
}

.page-game-lobby-game-features__cta-final .page-game-lobby-game-features__btn--secondary:hover {
    background-color: #1A202C;
    color: #FFD700;
    border-color: #1A202C;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-lobby-game-features__hero-title {
        font-size: 2.8em;
    }
    .page-game-lobby-game-features__section-title {
        font-size: 2em;
    }
    .page-game-lobby-game-features__grid, .page-game-lobby-game-features__features-list, .page-game-lobby-game-features__promo-grid, .page-game-lobby-game-features__steps-grid, .page-game-lobby-game-features__commitment-list, .page-game-lobby-game-features__support-list, .page-game-lobby-game-features__community-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-game-lobby-game-features__cta-final-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-game-lobby-game-features__hero {
        padding: 80px 0;
    }
    .page-game-lobby-game-features__hero-title {
        font-size: 2.2em;
    }
    .page-game-lobby-game-features__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-lobby-game-features__section {
        padding: 60px 0;
    }
    .page-game-lobby-game-features__section-title {
        font-size: 1.8em;
    }
    .page-game-lobby-game-features__section-description {
        font-size: 1em;
    }
    .page-game-lobby-game-features__grid-item, .page-game-lobby-game-features__feature-item, .page-game-lobby-game-features__promo-item, .page-game-lobby-game-features__step-item {
        padding: 25px;
    }
    .page-game-lobby-game-features__grid-title, .page-game-lobby-game-features__feature-title, .page-game-lobby-game-features__promo-title, .page-game-lobby-game-features__step-title {
        font-size: 1.4em;
    }
    .page-game-lobby-game-features__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-game-lobby-game-features__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-lobby-game-features__cta-final-title {
        font-size: 2em;
    }
    .page-game-lobby-game-features__cta-final-text {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-game-lobby-game-features__hero {
        padding: 60px 0;
    }
    .page-game-lobby-game-features__hero-title {
        font-size: 1.8em;
    }
    .page-game-lobby-game-features__hero-subtitle {
        font-size: 0.95em;
    }
    .page-game-lobby-game-features__section {
        padding: 40px 0;
    }
    .page-game-lobby-game-features__section-title {
        font-size: 1.5em;
    }
    .page-game-lobby-game-features__grid, .page-game-lobby-game-features__features-list, .page-game-lobby-game-features__promo-grid, .page-game-lobby-game-features__steps-grid, .page-game-lobby-game-features__commitment-list, .page-game-lobby-game-features__support-list, .page-game-lobby-game-features__community-list {
        grid-template-columns: 1fr;
    }
    .page-game-lobby-game-features__grid-img, .page-game-lobby-game-features__promo-img {
        height: 150px;
    }
    .page-game-lobby-game-features__cta-final-title {
        font-size: 1.8em;
    }
    .page-game-lobby-game-features__cta-final-text {
        font-size: 1em;
    }
    .page-game-lobby-game-features__btn--large {
        display: block;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
}