/* style/game-lobby-card-games-types-fun.css */
.page-game-lobby-card-games-types-fun {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

.page-game-lobby-card-games-types-fun__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-lobby-card-games-types-fun__hero {
    background: linear-gradient(135deg, #CC0000 0%, #333333 100%); /* Red to dark gradient */
    color: #fff;
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-lobby-card-games-types-fun__hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-card-games-types-fun__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-card-games-types-fun__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-lobby-card-games-types-fun__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #CC0000; /* Red text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-card-games-types-fun__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-game-lobby-card-games-types-fun__section {
    padding: 60px 0;
    background-color: #222;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-card-games-types-fun__section:nth-child(even) {
    background-color: #282828;
}

.page-game-lobby-card-games-types-fun__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-game-lobby-card-games-types-fun__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #CC0000; /* Red underline */
    border-radius: 2px;
}

.page-game-lobby-card-games-types-fun__introduction p,
.page-game-lobby-card-games-types-fun__bonuses p,
.page-game-lobby-card-games-types-fun__app-download p,
.page-game-lobby-card-games-types-fun__responsible-gambling p,
.page-game-lobby-card-games-types-fun__conclusion p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-game-lobby-card-games-types-fun__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-lobby-card-games-types-fun__game-card {
    background-color: #333;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-lobby-card-games-types-fun__game-card:hover {
    transform: translateY(-5px);
    background-color: #444;
}

.page-game-lobby-card-games-types-fun__game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-card-games-types-fun__game-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for game titles */
    margin-bottom: 15px;
}

.page-game-lobby-card-games-types-fun__game-card p {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-lobby-card-games-types-fun__game-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    color: #e0e0e0;
}

.page-game-lobby-card-games-types-fun__game-card ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.page-game-lobby-card-games-types-fun__game-card ul li::before {
    content: '•';
    color: #CC0000; /* Red bullet point */
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.page-game-lobby-card-games-types-fun__game-button {
    display: inline-block;
    background-color: #CC0000; /* Red button */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-lobby-card-games-types-fun__game-button:hover {
    background-color: #a30000; /* Darker red on hover */
    transform: translateY(-2px);
}

.page-game-lobby-card-games-types-fun__feature-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: left;
}

.page-game-lobby-card-games-types-fun__feature-list li {
    background-color: #333;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700; /* Gold accent */
    border-radius: 5px;
    font-size: 1.1em;
    color: #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-game-lobby-card-games-types-fun__feature-list li strong {
    color: #FFD700;
}

.page-game-lobby-card-games-types-fun__feature-image,
.page-game-lobby-card-games-types-fun__bonus-image,
.page-game-lobby-card-games-types-fun__app-image,
.page-game-lobby-card-games-types-fun__responsible-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 30px auto 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-card-games-types-fun__bonuses .page-game-lobby-card-games-types-fun__cta-button {
    background-color: #CC0000;
    color: #fff;
}

.page-game-lobby-card-games-types-fun__bonuses .page-game-lobby-card-games-types-fun__cta-button:hover {
    background-color: #a30000;
}

.page-game-lobby-card-games-types-fun__app-download .page-game-lobby-card-games-types-fun__cta-button {
    background-color: #FFD700;
    color: #CC0000;
}

.page-game-lobby-card-games-types-fun__app-download .page-game-lobby-card-games-types-fun__cta-button:hover {
    background-color: #e6c200;
}

.page-game-lobby-card-games-types-fun__conclusion .page-game-lobby-card-games-types-fun__cta-button {
    background-color: #CC0000;
    color: #fff;
}

.page-game-lobby-card-games-types-fun__conclusion .page-game-lobby-card-games-types-fun__cta-button:hover {
    background-color: #a30000;
}

.page-game-lobby-card-games-types-fun .highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-game-lobby-card-games-types-fun__hero {
        padding: 60px 0 30px;
    }

    .page-game-lobby-card-games-types-fun__hero-title {
        font-size: 2.5em;
    }

    .page-game-lobby-card-games-types-fun__hero-subtitle {
        font-size: 1em;
    }

    .page-game-lobby-card-games-types-fun__section-title {
        font-size: 2em;
    }

    .page-game-lobby-card-games-types-fun__game-grid {
        grid-template-columns: 1fr;
    }

    .page-game-lobby-card-games-types-fun__game-card {
        padding: 20px;
    }

    .page-game-lobby-card-games-types-fun__game-title {
        font-size: 1.5em;
    }

    .page-game-lobby-card-games-types-fun__feature-list li {
        padding: 15px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-game-lobby-card-games-types-fun__hero-title {
        font-size: 2em;
    }

    .page-game-lobby-card-games-types-fun__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-lobby-card-games-types-fun__section-title {
        font-size: 1.8em;
    }

    .page-game-lobby-card-games-types-fun__introduction p,
    .page-game-lobby-card-games-types-fun__bonuses p,
    .page-game-lobby-card-games-types-fun__app-download p,
    .page-game-lobby-card-games-types-fun__responsible-gambling p,
    .page-game-lobby-card-games-types-fun__conclusion p {
        font-size: 0.95em;
    }
}