/* style/casino-games.css */

/* General Page Styling */
.page-casino-games {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light grey for general text on dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

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

.page-casino-games__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-casino-games__section-subtitle {
    font-size: 1.2em;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 50px;
}

.page-casino-games .highlight {
    color: #FFD700;
}

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

.page-casino-games__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-casino-games__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-casino-games__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    margin-left: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-casino-games__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-casino-games__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 5px;
    background-color: #8B0000; /* Dark Red */
    color: #FFD700; /* Gold */
}

.page-casino-games__btn--small:hover {
    background-color: #a00000;
    color: #fff;
}

.page-casino-games__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 10px;
}

/* Hero Section */
.page-casino-games__hero {
    background: linear-gradient(135deg, #2a0a0a 0%, #1a1a1a 50%, #2a0a0a 100%);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap-reverse;
    border-bottom: 5px solid #FFD700;
}

.page-casino-games__hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
    padding: 20px;
}

.page-casino-games__hero-title {
    font-size: 3.8em;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-casino-games__hero-description {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-casino-games__hero-actions {
    display: flex;
    gap: 15px;
}

.page-casino-games__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
}

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

/* Why Choose Section */
.page-casino-games__why-choose {
    padding: 80px 0;
    background-color: #222;
}

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

.page-casino-games__feature-item {
    background-color: #333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-games__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-casino-games__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-casino-games__feature-item p {
    color: #ccc;
    font-size: 1.05em;
}

/* Game Categories Section */
.page-casino-games__game-categories {
    padding: 80px 0;
    background-color: #1a1a1a;
}

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

.page-casino-games__category-item {
    background-color: #282828;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.page-casino-games__category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

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

.page-casino-games__category-title {
    font-size: 1.8em;
    color: #FFD700;
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-casino-games__category-item p {
    color: #ccc;
    font-size: 1.05em;
    padding: 0 15px 20px;
}

/* Promotions Section */
.page-casino-games__promotions {
    padding: 80px 0;
    background-color: #222;
}

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

.page-casino-games__promo-item {
    background-color: #282828;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

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

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

.page-casino-games__promo-title {
    font-size: 1.8em;
    color: #FFD700;
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-casino-games__promo-item p {
    color: #ccc;
    font-size: 1.05em;
    padding: 0 15px 20px;
}

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

/* Mobile App Section */
.page-casino-games__mobile-app {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.page-casino-games__mobile-app-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-casino-games__mobile-app-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-casino-games__mobile-app-text .page-casino-games__section-title {
    text-align: left;
}

.page-casino-games__mobile-app-text p {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.page-casino-games__mobile-app-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-casino-games__mobile-app-text ul li {
    color: #e0e0e0;
    font-size: 1.1em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.page-casino-games__mobile-app-text ul li i {
    color: #FFD700;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-casino-games__mobile-app-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
}

.page-casino-games__mobile-app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Guides Section */
.page-casino-games__guides {
    padding: 80px 0;
    background-color: #222;
}

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

.page-casino-games__guide-item {
    background-color: #282828;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-games__guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

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

.page-casino-games__guide-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-casino-games__guide-title a:hover {
    text-decoration: underline;
}

.page-casino-games__guide-description {
    color: #ccc;
    font-size: 1em;
    margin-bottom: 20px;
}

/* Final CTA Section */
.page-casino-games__cta-final {
    padding: 100px 0;
    background: linear-gradient(45deg, #8B0000 0%, #FFD700 100%);
    text-align: center;
    color: #fff;
    border-top: 5px solid #FFD700;
}

.page-casino-games__cta-final .page-casino-games__section-title {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-casino-games__cta-final .page-casino-games__section-subtitle {
    color: #eee;
    font-size: 1.3em;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-casino-games__hero-title {
        font-size: 3em;
    }
    .page-casino-games__section-title {
        font-size: 2.2em;
    }
    .page-casino-games__hero-content, .page-casino-games__hero-image-wrapper {
        max-width: 100%;
        text-align: center;
    }
    .page-casino-games__hero-actions {
        justify-content: center;
    }
    .page-casino-games__mobile-app-content {
        flex-direction: column;
    }
    .page-casino-games__mobile-app-text .page-casino-games__section-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-casino-games__hero {
        padding: 60px 0;
        gap: 20px;
    }
    .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: 1.8em;
    }
    .page-casino-games__section-subtitle {
        font-size: 1em;
    }
    .page-casino-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-casino-games__btn--secondary {
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .page-casino-games__hero-title {
        font-size: 2em;
    }
    .page-casino-games__hero-description {
        font-size: 0.95em;
    }
    .page-casino-games__section-title {
        font-size: 1.5em;
    }
    .page-casino-games__hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-casino-games__btn--secondary {
        margin-left: 0;
    }
    .page-casino-games__feature-title, .page-casino-games__category-title, .page-casino-games__promo-title, .page-casino-games__guide-title {
        font-size: 1.4em;
    }
}