/* style/casino-games-hot-games.css */

:root {
    --jbo-primary-color: #1A2B4C;
    --jbo-accent-color: #FF8C00;
    --jbo-text-light: #F8F8F8;
    --jbo-text-dark: #333333;
    --jbo-background-light: #F4F7F6;
    --jbo-background-dark: #0F1D30;
    --jbo-gray-light: #CCCCCC;
    --jbo-gray-dark: #666666;
}

.page-casino-games-hot-games {
    font-family: 'Arial', sans-serif;
    color: var(--jbo-text-dark);
    line-height: 1.6;
    background-color: var(--jbo-background-light);
}

.page-casino-games-hot-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-casino-games-hot-games__hero {
    background: linear-gradient(135deg, var(--jbo-primary-color) 0%, #3a4a6b 100%);
    color: var(--jbo-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.page-casino-games-hot-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--jbo-text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-casino-games-hot-games__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(248, 248, 248, 0.9);
}

.page-casino-games-hot-games__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-casino-games-hot-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-casino-games-hot-games__btn--primary {
    background-color: var(--jbo-accent-color);
    color: var(--jbo-text-light);
    font-size: 1.1em;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.page-casino-games-hot-games__btn--primary:hover {
    background-color: #e67e00; /* Darker orange */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.6);
}

.page-casino-games-hot-games__btn--secondary {
    background-color: var(--jbo-primary-color);
    color: var(--jbo-text-light);
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-casino-games-hot-games__btn--secondary:hover {
    background-color: #0e1a2e; /* Darker primary */
    transform: translateY(-2px);
}

.page-casino-games-hot-games__section {
    padding: 60px 0;
}

.page-casino-games-hot-games__section--intro {
    background-color: var(--jbo-background-light);
    text-align: center;
}

.page-casino-games-hot-games__section-title {
    font-size: 2.5em;
    color: var(--jbo-primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-casino-games-hot-games__section--intro p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 15px auto;
    color: var(--jbo-text-dark);
}

.page-casino-games-hot-games__section--intro p a {
    color: var(--jbo-accent-color);
    text-decoration: none;
    font-weight: bold;
}

.page-casino-games-hot-games__section--intro p a:hover {
    text-decoration: underline;
}

.page-casino-games-hot-games__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-casino-games-hot-games__card {
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-casino-games-hot-games__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-casino-games-hot-games__card-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-casino-games-hot-games__card-title {
    font-size: 1.5em;
    color: var(--jbo-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-casino-games-hot-games__card-title a {
    color: var(--jbo-primary-color);
    text-decoration: none;
}

.page-casino-games-hot-games__card-title a:hover {
    color: var(--jbo-accent-color);
}

.page-casino-games-hot-games__card-description {
    font-size: 0.95em;
    color: var(--jbo-gray-dark);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-casino-games-hot-games__card-description a {
    color: var(--jbo-accent-color);
    text-decoration: none;
    font-weight: bold;
}

.page-casino-games-hot-games__card-description a:hover {
    text-decoration: underline;
}

.page-casino-games-hot-games__section--featured {
    background-color: var(--jbo-background-dark);
    color: var(--jbo-text-light);
}

.page-casino-games-hot-games__section--featured .page-casino-games-hot-games__section-title {
    color: var(--jbo-accent-color);
}

.page-casino-games-hot-games__section--featured p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: center;
    color: rgba(248, 248, 248, 0.9);
}

.page-casino-games-hot-games__section--featured p a {
    color: var(--jbo-accent-color);
    text-decoration: none;
    font-weight: bold;
}

.page-casino-games-hot-games__section--featured p a:hover {
    text-decoration: underline;
}

.page-casino-games-hot-games__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-casino-games-hot-games__list li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    font-size: 1.05em;
    color: var(--jbo-text-light);
}

.page-casino-games-hot-games__list li:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-casino-games-hot-games__list li strong {
    color: var(--jbo-accent-color);
}

.page-casino-games-hot-games__list li a {
    color: var(--jbo-accent-color);
    text-decoration: none;
    font-weight: bold;
}

.page-casino-games-hot-games__list li a:hover {
    text-decoration: underline;
}

.page-casino-games-hot-games__section--benefits {
    background-color: var(--jbo-background-light);
}

.page-casino-games-hot-games__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-casino-games-hot-games__benefit-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-casino-games-hot-games__benefit-item:hover {
    transform: translateY(-5px);
}

.page-casino-games-hot-games__benefit-title {
    font-size: 1.6em;
    color: var(--jbo-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-casino-games-hot-games__benefit-item p {
    color: var(--jbo-gray-dark);
    font-size: 1em;
}

.page-casino-games-hot-games__benefit-item p a {
    color: var(--jbo-accent-color);
    text-decoration: none;
    font-weight: bold;
}

.page-casino-games-hot-games__benefit-item p a:hover {
    text-decoration: underline;
}

.page-casino-games-hot-games__section--cta {
    background: linear-gradient(90deg, var(--jbo-primary-color), #3a4a6b);
    color: var(--jbo-text-light);
    padding: 80px 0;
    text-align: center;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    margin-top: 60px;
}

.page-casino-games-hot-games__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-casino-games-hot-games__cta-image {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-casino-games-hot-games__cta-text {
    max-width: 800px;
}

.page-casino-games-hot-games__cta-title {
    font-size: 2.8em;
    color: var(--jbo-accent-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-casino-games-hot-games__cta-text p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(248, 248, 248, 0.9);
}

.page-casino-games-hot-games__cta-text p a {
    color: var(--jbo-accent-color);
    text-decoration: none;
    font-weight: bold;
}

.page-casino-games-hot-games__cta-text p a:hover {
    text-decoration: underline;
}

.page-casino-games-hot-games__floating-promo {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--jbo-accent-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-casino-games-hot-games__floating-promo:hover {
    transform: translateY(-50%) scale(1.05);
    background-color: #e67e00;
}

.page-casino-games-hot-games__floating-promo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--jbo-text-light);
    font-weight: bold;
    font-size: 1.1em;
}

.page-casino-games-hot-games__floating-promo-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-casino-games-hot-games__hero-title {
        font-size: 2.8em;
    }

    .page-casino-games-hot-games__hero-subtitle {
        font-size: 1.1em;
    }

    .page-casino-games-hot-games__section-title {
        font-size: 2em;
    }

    .page-casino-games-hot-games__grid,
    .page-casino-games-hot-games__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-casino-games-hot-games__cta-title {
        font-size: 2.2em;
    }

    .page-casino-games-hot-games__cta-text p {
        font-size: 1.1em;
    }

    .page-casino-games-hot-games__floating-promo {
        right: 10px;
        padding: 8px 12px;
    }

    .page-casino-games-hot-games__floating-promo a {
        font-size: 1em;
    }

    .page-casino-games-hot-games__floating-promo-icon {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 768px) {
    .page-casino-games-hot-games__hero {
        padding: 60px 0;
    }

    .page-casino-games-hot-games__hero-title {
        font-size: 2.2em;
    }

    .page-casino-games-hot-games__hero-subtitle {
        font-size: 1em;
    }

    .page-casino-games-hot-games__section {
        padding: 40px 0;
    }

    .page-casino-games-hot-games__section-title {
        font-size: 1.8em;
    }

    .page-casino-games-hot-games__grid,
    .page-casino-games-hot-games__benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-casino-games-hot-games__cta-title {
        font-size: 1.8em;
    }

    .page-casino-games-hot-games__cta-text p {
        font-size: 1em;
    }

    .page-casino-games-hot-games__cta-image {
        max-width: 200px;
    }

    .page-casino-games-hot-games__floating-promo {
        right: 5px;
        bottom: 10px;
        top: auto;
        transform: translateY(0);
    }

    .page-casino-games-hot-games__floating-promo:hover {
        transform: scale(1.05);
    }
}

@media (max-width: 480px) {
    .page-casino-games-hot-games__hero-title {
        font-size: 1.8em;
    }

    .page-casino-games-hot-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-casino-games-hot-games__section-title {
        font-size: 1.5em;
    }

    .page-casino-games-hot-games__card-title {
        font-size: 1.3em;
    }

    .page-casino-games-hot-games__benefit-title {
        font-size: 1.4em;
    }

    .page-casino-games-hot-games__cta-title {
        font-size: 1.5em;
    }

    .page-casino-games-hot-games__floating-promo {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: calc(100% - 20px);
        justify-content: center;
    }
}