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

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

.page-casino-games-hiphop-slots__hero-section {
    background: linear-gradient(135deg, #FF0055, #00FFEE);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-casino-games-hiphop-slots__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 0, 85, 0.2) 0%, rgba(0, 255, 238, 0.2) 50%, transparent 70%);
    animation: page-casino-games-hiphop-slots__pulse 15s infinite alternate;
    z-index: 0;
}

@keyframes page-casino-games-hiphop-slots__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-casino-games-hiphop-slots__hero-section > * {
    position: relative;
    z-index: 1;
}

.page-casino-games-hiphop-slots__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 238, 0.7);
}

.page-casino-games-hiphop-slots__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-casino-games-hiphop-slots__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-casino-games-hiphop-slots__btn--primary {
    background-color: #FF0055;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.6);
}

.page-casino-games-hiphop-slots__btn--primary:hover {
    background-color: #e6004d;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.9);
    transform: translateY(-2px);
}

.page-casino-games-hiphop-slots__btn--secondary {
    background-color: #00FFEE;
    color: #1a1a1a;
    box-shadow: 0 0 15px rgba(0, 255, 238, 0.6);
}

.page-casino-games-hiphop-slots__btn--secondary:hover {
    background-color: #00e6d5;
    box-shadow: 0 0 20px rgba(0, 255, 238, 0.9);
    transform: translateY(-2px);
}

.page-casino-games-hiphop-slots__btn--play {
    background-color: #FF0055;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}

.page-casino-games-hiphop-slots__btn--play:hover {
    background-color: #e6004d;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.8);
}

.page-casino-games-hiphop-slots__btn--promo {
    background-color: #00FFEE;
    color: #1a1a1a;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 255, 238, 0.5);
}

.page-casino-games-hiphop-slots__btn--promo:hover {
    background-color: #00e6d5;
    box-shadow: 0 0 15px rgba(0, 255, 238, 0.8);
}

.page-casino-games-hiphop-slots__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
    margin: 5px;
    background-color: #FF0055;
    color: #ffffff;
    border-radius: 25px;
}

.page-casino-games-hiphop-slots__btn--small:hover {
    background-color: #e6004d;
    transform: translateY(-1px);
}

.page-casino-games-hiphop-slots__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    margin-top: 30px;
}

.page-casino-games-hiphop-slots__btn--outline {
    background-color: transparent;
    border: 2px solid #00FFEE;
    color: #00FFEE;
    box-shadow: 0 0 10px rgba(0, 255, 238, 0.5);
}

.page-casino-games-hiphop-slots__btn--outline:hover {
    background-color: #00FFEE;
    color: #1a1a1a;
    box-shadow: 0 0 15px rgba(0, 255, 238, 0.8);
}

.page-casino-games-hiphop-slots__section {
    padding: 60px 0;
    text-align: center;
}

.page-casino-games-hiphop-slots__section--dark {
    background-color: #111111;
}

.page-casino-games-hiphop-slots__section-title {
    font-size: 2.5em;
    color: #FF0055;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(255, 0, 85, 0.5);
}

.page-casino-games-hiphop-slots__section-description {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-casino-games-hiphop-slots__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

@media (min-width: 768px) {
    .page-casino-games-hiphop-slots__content-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-casino-games-hiphop-slots__content-grid--reversed {
        grid-template-columns: 1fr 1fr;
    }
    .page-casino-games-hiphop-slots__content-grid--reversed .page-casino-games-hiphop-slots__text-content {
        order: 2;
    }
    .page-casino-games-hiphop-slots__content-grid--reversed .page-casino-games-hiphop-slots__image-wrapper {
        order: 1;
    }
}

.page-casino-games-hiphop-slots__text-content p {
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-casino-games-hiphop-slots__text-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-casino-games-hiphop-slots__text-content ul li {
    margin-bottom: 10px;
    color: #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.page-casino-games-hiphop-slots__text-content ul li::before {
    content: '★';
    color: #00FFEE;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.page-casino-games-hiphop-slots__image-wrapper {
    text-align: center;
}

.page-casino-games-hiphop-slots__image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 238, 0.3);
}

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

.page-casino-games-hiphop-slots__game-card {
    background-color: #222222;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333333;
}

.page-casino-games-hiphop-slots__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 238, 0.2);
}

.page-casino-games-hiphop-slots__game-image {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.3);
}

.page-casino-games-hiphop-slots__game-title {
    font-size: 1.8em;
    color: #FF0055;
    margin-bottom: 10px;
}

.page-casino-games-hiphop-slots__game-description {
    color: #ccc;
    margin-bottom: 20px;
}

.page-casino-games-hiphop-slots__game-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.page-casino-games-hiphop-slots__game-features li {
    color: #f0f0f0;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.page-casino-games-hiphop-slots__feature-icon {
    color: #00FFEE;
    position: absolute;
    left: 0;
    font-size: 1.1em;
}

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

.page-casino-games-hiphop-slots__promo-card {
    background-color: #222222;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333333;
}

.page-casino-games-hiphop-slots__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.2);
}

.page-casino-games-hiphop-slots__promo-image {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 255, 238, 0.3);
}

.page-casino-games-hiphop-slots__promo-title {
    font-size: 1.8em;
    color: #00FFEE;
    margin-bottom: 10px;
}

.page-casino-games-hiphop-slots__promo-text {
    color: #ccc;
    margin-bottom: 20px;
}

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

.page-casino-games-hiphop-slots__step-card {
    background-color: #222222;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid #333333;
    position: relative;
    overflow: hidden;
}

.page-casino-games-hiphop-slots__step-number {
    display: block;
    font-size: 3em;
    font-weight: bold;
    color: rgba(255, 0, 85, 0.7);
    margin-bottom: 15px;
    position: absolute;
    top: 10px;
    right: 20px;
    opacity: 0.2;
    z-index: 0;
}

.page-casino-games-hiphop-slots__step-card > * {
    position: relative;
    z-index: 1;
}

.page-casino-games-hiphop-slots__step-title {
    font-size: 1.6em;
    color: #FF0055;
    margin-bottom: 10px;
}

.page-casino-games-hiphop-slots__step-text {
    color: #ccc;
    margin-bottom: 20px;
}

.page-casino-games-hiphop-slots__section--cta {
    background: linear-gradient(90deg, #FF0055, #00FFEE);
    color: #ffffff;
    padding: 80px 0;
}

.page-casino-games-hiphop-slots__container--flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-casino-games-hiphop-slots__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 238, 0.7);
}

.page-casino-games-hiphop-slots__cta-text {
    font-size: 1.3em;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-casino-games-hiphop-slots__section--responsible-gaming .page-casino-games-hiphop-slots__text-content {
    text-align: left;
}

.page-casino-games-hiphop-slots__section--final-cta {
    padding: 80px 0;
    background-color: #0d0d0d;
    color: #f0f0f0;
}

.page-casino-games-hiphop-slots__final-cta-title {
    font-size: 2.8em;
    color: #00FFEE;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(0, 255, 238, 0.6);
}

.page-casino-games-hiphop-slots__final-cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-casino-games-hiphop-slots__final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-casino-games-hiphop-slots__hero-title {
        font-size: 2.8em;
    }
    .page-casino-games-hiphop-slots__hero-subtitle {
        font-size: 1.3em;
    }
    .page-casino-games-hiphop-slots__section-title {
        font-size: 2em;
    }
    .page-casino-games-hiphop-slots__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-casino-games-hiphop-slots__hero-title {
        font-size: 2.2em;
    }
    .page-casino-games-hiphop-slots__hero-subtitle {
        font-size: 1.1em;
    }
    .page-casino-games-hiphop-slots__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-casino-games-hiphop-slots__section {
        padding: 40px 0;
    }
    .page-casino-games-hiphop-slots__section-title {
        font-size: 1.8em;
    }
    .page-casino-games-hiphop-slots__content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .page-casino-games-hiphop-slots__content-grid--reversed .page-casino-games-hiphop-slots__text-content {
        order: initial;
    }
    .page-casino-games-hiphop-slots__content-grid--reversed .page-casino-games-hiphop-slots__image-wrapper {
        order: initial;
    }
    .page-casino-games-hiphop-slots__text-content ul {
        text-align: left;
    }
    .page-casino-games-hiphop-slots__game-showcase, .page-casino-games-hiphop-slots__promo-grid, .page-casino-games-hiphop-slots__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-casino-games-hiphop-slots__cta-title {
        font-size: 2em;
    }
    .page-casino-games-hiphop-slots__cta-text {
        font-size: 1em;
    }
    .page-casino-games-hiphop-slots__final-cta-title {
        font-size: 2.2em;
    }
    .page-casino-games-hiphop-slots__final-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-casino-games-hiphop-slots__btn--large {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-casino-games-hiphop-slots__hero-title {
        font-size: 1.8em;
    }
    .page-casino-games-hiphop-slots__hero-subtitle {
        font-size: 0.9em;
    }
    .page-casino-games-hiphop-slots__btn {
        padding: 10px 20px;
        font-size: 0.9em;
        margin: 5px;
    }
    .page-casino-games-hiphop-slots__section-title {
        font-size: 1.5em;
    }
    .page-casino-games-hiphop-slots__cta-title {
        font-size: 1.8em;
    }
    .page-casino-games-hiphop-slots__final-cta-title {
        font-size: 1.8em;
    }
}