/* style/slots-games-new.css */
.page-slots-games-new {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #051426;
    line-height: 1.6;
}

.page-slots-games-new__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-slots-games-new__section-title {
    font-size: 2.5em;
    color: #E0B400;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-slots-games-new__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E0B400;
    border-radius: 2px;
}

.page-slots-games-new__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #d0d0d0;
}

.page-slots-games-new__text-block--center {
    text-align: center;
}

.page-slots-games-new__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, border-color 0.3s ease;
    text-align: center;
    cursor: pointer;
    font-size: 1em;
}

.page-slots-games-new__btn--primary {
    background-color: #E0B400;
    color: #0A2342;
    border: 2px solid #E0B400;
}

.page-slots-games-new__btn--primary:hover {
    background-color: #f5c730;
    border-color: #f5c730;
}

.page-slots-games-new__btn--secondary {
    background-color: transparent;
    color: #E0B400;
    border: 2px solid #E0B400;
}

.page-slots-games-new__btn--secondary:hover {
    background-color: #E0B400;
    color: #0A2342;
}

.page-slots-games-new__btn--outline {
    background-color: transparent;
    color: #E0B400;
    border: 2px solid #E0B400;
}

.page-slots-games-new__btn--outline:hover {
    background-color: #E0B400;
    color: #0A2342;
}

.page-slots-games-new__btn--large {
    font-size: 1.2em;
    padding: 15px 30px;
    min-width: 200px;
}

.page-slots-games-new__btn--small {
    font-size: 0.9em;
    padding: 8px 15px;
}

.page-slots-games-new__btn--huge {
    font-size: 1.8em;
    padding: 20px 40px;
    min-width: 300px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Hero Section */
.page-slots-games-new__hero {
    background: linear-gradient(135deg, #0A2342 0%, #051426 100%);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-slots-games-new__hero-content {
    max-width: 900px;
    z-index: 10;
}

.page-slots-games-new__hero-title {
    font-size: 3.5em;
    color: #E0B400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-slots-games-new__hero-description {
    font-size: 1.4em;
    color: #d0d0d0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-slots-games-new__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-slots-games-new__hero-image-wrapper {
    position: absolute;
    bottom: -50px;
    right: -100px;
    opacity: 0.1;
    z-index: 5;
}

.page-slots-games-new__hero-image {
    width: 600px;
    height: auto;
    transform: rotate(15deg);
}

/* Introduction Section */
.page-slots-games-new__introduction {
    padding: 60px 0;
    background-color: #0A2342;
}

.page-slots-games-new__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Featured Games Section */
.page-slots-games-new__featured-games {
    padding: 60px 0;
    background-color: #051426;
}

.page-slots-games-new__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-slots-games-new__game-card {
    background-color: #1a3557;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-slots-games-new__game-card:hover {
    transform: translateY(-10px);
}

.page-slots-games-new__game-thumbnail {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-slots-games-new__game-title {
    font-size: 1.5em;
    color: #E0B400;
    margin-bottom: 15px;
}

.page-slots-games-new__game-description {
    font-size: 1em;
    color: #c0c0c0;
}

/* How To Play Section */
.page-slots-games-new__how-to-play {
    padding: 60px 0;
    background-color: #0A2342;
}

.page-slots-games-new__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-slots-games-new__steps-list li {
    background-color: #1a3557;
    padding: 20px;
    border-left: 5px solid #E0B400;
    border-radius: 5px;
    font-size: 1.1em;
    color: #f0f0f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-games-new__steps-list li strong {
    color: #E0B400;
}

.page-slots-games-new__cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.page-slots-games-new__image-centered {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Promotions Section */
.page-slots-games-new__promotions {
    padding: 60px 0;
    background-color: #051426;
}

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

.page-slots-games-new__promotion-card {
    background-color: #1a3557;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.page-slots-games-new__promotion-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-slots-games-new__promotion-title {
    font-size: 1.4em;
    color: #E0B400;
    margin-bottom: 10px;
}

.page-slots-games-new__promotion-description {
    font-size: 0.95em;
    color: #c0c0c0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Why ji88bet Section */
.page-slots-games-new__why-ji88bet {
    padding: 60px 0;
    background-color: #0A2342;
}

.page-slots-games-new__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-slots-games-new__benefits-list li {
    background-color: #1a3557;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #f0f0f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.5;
}

.page-slots-games-new__benefits-list li strong {
    color: #E0B400;
    display: block;
    margin-bottom: 5px;
}

/* Call to Action Section */
.page-slots-games-new__call-to-action {
    background-color: #051426;
    padding: 80px 20px;
    text-align: center;
}

.page-slots-games-new__call-to-action-content {
    max-width: 800px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slots-games-new__hero-title {
        font-size: 2.8em;
    }
    .page-slots-games-new__hero-description {
        font-size: 1.2em;
    }
    .page-slots-games-new__section-title {
        font-size: 2em;
    }
    .page-slots-games-new__game-grid, .page-slots-games-new__promotion-grid, .page-slots-games-new__benefits-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-slots-games-new__hero {
        padding: 60px 15px;
    }
    .page-slots-games-new__hero-title {
        font-size: 2.2em;
    }
    .page-slots-games-new__hero-description {
        font-size: 1em;
    }
    .page-slots-games-new__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-slots-games-new__hero-image-wrapper {
        display: none;
    }
    .page-slots-games-new__btn--large {
        width: 100%;
        max-width: 300px;
    }
    .page-slots-games-new__section-title {
        font-size: 1.8em;
    }
    .page-slots-games-new__text-block {
        font-size: 0.95em;
    }
    .page-slots-games-new__btn--huge {
        font-size: 1.5em;
        padding: 15px 30px;
        min-width: unset;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-slots-games-new__hero-title {
        font-size: 1.8em;
    }
    .page-slots-games-new__hero-description {
        font-size: 0.9em;
    }
    .page-slots-games-new__section-title {
        font-size: 1.5em;
    }
    .page-slots-games-new__game-card, .page-slots-games-new__promotion-card, .page-slots-games-new__benefits-list li {
        padding: 20px;
    }
    .page-slots-games-new__steps-list li {
        font-size: 1em;
    }
}