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

.page-casino-games .highlight {
    color: #FF0055;
    font-weight: bold;
}

.page-casino-games__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-casino-games__section-title {
    font-size: 2.8em;
    color: #00FFEE;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 238, 0.6);
}

.page-casino-games__section-description {
    font-size: 1.1em;
    color: #B0B0B0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-casino-games__hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #330011 50%, #002222 100%);
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-casino-games__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.page-casino-games__hero-title {
    font-size: 3.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 0, 85, 0.8);
}

.page-casino-games__hero-description {
    font-size: 1.3em;
    color: #D0D0D0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-casino-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    overflow: hidden;
}

.page-casino-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
    transform: scale(1.1);
}

/* Buttons */
.page-casino-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.page-casino-games__btn--primary {
    background-color: #FF0055;
    color: #FFFFFF;
    border: 2px solid #FF0055;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.6);
}

.page-casino-games__btn--primary:hover {
    background-color: #e6004d;
    border-color: #e6004d;
    box-shadow: 0 0 25px rgba(255, 0, 85, 0.8);
    transform: translateY(-3px);
}

.page-casino-games__btn--secondary {
    background-color: transparent;
    color: #00FFEE;
    border: 2px solid #00FFEE;
    box-shadow: 0 0 15px rgba(0, 255, 238, 0.6);
}

.page-casino-games__btn--secondary:hover {
    background-color: rgba(0, 255, 238, 0.1);
    box-shadow: 0 0 25px rgba(0, 255, 238, 0.8);
    transform: translateY(-3px);
}

.page-casino-games__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 30px;
}

.page-casino-games__btn--link {
    background: none;
    border: none;
    color: #00FFEE;
    text-decoration: underline;
    padding: 0;
    font-weight: normal;
}

.page-casino-games__btn--link:hover {
    color: #4dfff3;
    text-decoration: none;
}

.page-casino-games__cta-center {
    margin-top: 50px;
}

/* Why Choose Section */
.page-casino-games__why-choose {
    background-color: #222222;
}

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

.page-casino-games__feature-item {
    background-color: #2c2c2c;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 0, 85, 0.2);
}

.page-casino-games__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 255, 238, 0.3);
}

.page-casino-games__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px #00FFEE);
}

.page-casino-games__feature-title {
    font-size: 1.6em;
    color: #FF0055;
    margin-bottom: 15px;
}

.page-casino-games__feature-text {
    font-size: 1em;
    color: #B0B0B0;
}

/* Game Types Section */
.page-casino-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-casino-games__game-card {
    background-color: #2c2c2c;
    border-radius: 15px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 255, 238, 0.2);
}

.page-casino-games__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 0, 85, 0.3);
}

.page-casino-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FF0055;
}

.page-casino-games__game-title {
    font-size: 1.5em;
    color: #00FFEE;
    padding: 20px 20px 10px;
    text-shadow: 0 0 5px rgba(0, 255, 238, 0.4);
}

.page-casino-games__game-text {
    font-size: 0.95em;
    color: #B0B0B0;
    padding: 0 20px 20px;
}

.page-casino-games__game-card .page-casino-games__btn {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
    text-align: center;
}

/* Promotions Section */
.page-casino-games__promotions {
    background-color: #1a1a1a;
}

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

.page-casino-games__promo-item {
    background-color: #2c2c2c;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 0, 85, 0.2);
}

.page-casino-games__promo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 255, 238, 0.3);
}

.page-casino-games__promo-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid #00FFEE;
}

.page-casino-games__promo-title {
    font-size: 1.6em;
    color: #FF0055;
    margin-bottom: 15px;
}

.page-casino-games__promo-text {
    font-size: 1em;
    color: #B0B0B0;
}

/* How To Start Section */
.page-casino-games__how-to-start {
    background-color: #222222;
}

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

.page-casino-games__step-item {
    background-color: #2c2c2c;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 255, 238, 0.2);
}

.page-casino-games__step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 0, 85, 0.3);
}

.page-casino-games__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FF0055;
    color: #FFFFFF;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.7);
}

.page-casino-games__step-title {
    font-size: 1.6em;
    color: #00FFEE;
    margin-bottom: 15px;
}

.page-casino-games__step-text {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 20px;
}

/* Detail Pages Section */
.page-casino-games__detail-pages {
    background-color: #1a1a1a;
}

.page-casino-games__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-casino-games__detail-item {
    background-color: #2c2c2c;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 0, 85, 0.2);
}

.page-casino-games__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 255, 238, 0.2);
}

.page-casino-games__detail-title {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-casino-games__detail-title a {
    color: #FF0055;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-casino-games__detail-title a:hover {
    color: #00FFEE;
    text-decoration: underline;
}

.page-casino-games__detail-description {
    font-size: 0.95em;
    color: #B0B0B0;
    margin-bottom: 20px;
}

/* Responsible Gaming Section */
.page-casino-games__responsible-gaming {
    background-color: #222222;
    border-top: 1px solid rgba(255, 0, 85, 0.3);
}

/* Final CTA Section */
.page-casino-games__final-cta {
    background: linear-gradient(45deg, #330011, #002222);
    padding: 80px 20px;
    border-top: 1px solid rgba(0, 255, 238, 0.3);
}

.page-casino-games__final-cta .page-casino-games__section-title {
    color: #FFFFFF;
    text-shadow: 0 0 15px rgba(255, 0, 85, 0.8);
}

.page-casino-games__final-cta .page-casino-games__section-description {
    color: #D0D0D0;
}

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

    .page-casino-games__hero-description {
        font-size: 1.1em;
    }

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

    .page-casino-games__features-grid,
    .page-casino-games__game-grid,
    .page-casino-games__promo-grid,
    .page-casino-games__steps-grid,
    .page-casino-games__detail-list {
        grid-template-columns: 1fr;
    }

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

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

    .page-casino-games__hero-description {
        font-size: 1em;
    }

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

    .page-casino-games__feature-item,
    .page-casino-games__game-card,
    .page-casino-games__promo-item,
    .page-casino-games__step-item,
    .page-casino-games__detail-item {
        padding: 20px;
    }

    .page-casino-games__feature-icon {
        width: 50px;
        height: 50px;
    }

    .page-casino-games__feature-title,
    .page-casino-games__game-title,
    .page-casino-games__promo-title,
    .page-casino-games__step-title,
    .page-casino-games__detail-title {
        font-size: 1.3em;
    }
}