/* style/casino.css */

/* General page styling */
.page-casino {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    background-color: #000080; /* Dark blue background */
    line-height: 1.6;
}

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

.page-casino__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
}

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

.page-casino__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #e0e0e0;
}

.page-casino__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.page-casino__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-casino__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-casino__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-casino__btn--secondary:hover {
    background-color: #FFD700;
    color: #000080;
    transform: translateY(-2px);
}

.page-casino__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-casino__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Hero Section */
.page-casino__hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #000080 0%, #3a005c 100%); /* Dark blue to purple gradient */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-casino__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,lines,dark_blue,gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 1;
}

.page-casino__hero-content {
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.page-casino__hero-title {
    font-size: 4em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-casino__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.7;
    color: #e0e0e0;
}

.page-casino__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-casino__hero-image-wrapper {
    display: none; /* Hidden by default, shown on larger screens */
}

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

/* About Section */
.page-casino__about-section {
    padding: 80px 0;
    background-color: #0a0a40; /* Slightly lighter dark blue */
}

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

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

.page-casino__feature-item:hover {
    transform: translateY(-10px);
    background-color: #000070;
}

.page-casino__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

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

.page-casino__feature-description {
    font-size: 1em;
    color: #c0c0c0;
}

/* Games Overview Section */
.page-casino__games-overview {
    padding: 80px 0;
    background-color: #000080;
}

.page-casino__game-category {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.page-casino__game-category:last-child {
    margin-bottom: 0;
}

.page-casino__game-category--reverse {
    flex-direction: row-reverse;
}

.page-casino__game-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-casino__game-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-casino__game-details {
    flex: 2;
}

.page-casino__game-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-casino__game-description {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

/* Promo Section */
.page-casino__promo-section {
    padding: 80px 0;
    background-color: #0a0a40;
}

.page-casino__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-casino__promo-card {
    background-color: #000060;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-casino__promo-card:hover {
    transform: translateY(-10px);
}

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

.page-casino__promo-title {
    font-size: 1.8em;
    color: #FFD700;
    margin: 25px 15px 15px;
}

.page-casino__promo-description {
    font-size: 1em;
    color: #c0c0c0;
    padding: 0 20px 25px;
    flex-grow: 1;
}

.page-casino__cta-full-width {
    text-align: center;
    margin-top: 30px;
}

/* Guide Section */
.page-casino__guide-section {
    padding: 80px 0;
    background-color: #000080;
}

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

.page-casino__step-item {
    background-color: #0a0a40;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-casino__step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); /* Adding subtle glow for icons */
}

.page-casino__step-title {
    font-size: 1.7em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-casino__step-description {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 25px;
}

/* Related Pages Section */
.page-casino__related-pages {
    padding: 80px 0;
    background-color: #0a0a40;
}

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

.page-casino__detail-card {
    background-color: #000060;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-casino__detail-title {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-casino__detail-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-casino__detail-title a:hover {
    color: #e6c200;
}

.page-casino__detail-description {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Call to Action Bottom */
.page-casino__cta-bottom {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(45deg, #000080, #1a0033); /* Dark blue to darker purple gradient */
}

.page-casino__cta-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.page-casino__cta-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-casino__hero-title {
        font-size: 3em;
    }
    .page-casino__hero-description,
    .page-casino__cta-description {
        font-size: 1.1em;
    }
    .page-casino__game-category {
        flex-direction: column;
        text-align: center;
    }
    .page-casino__game-category--reverse {
        flex-direction: column;
    }
    .page-casino__game-details {
        text-align: center;
    }
    .page-casino__game-title {
        font-size: 1.8em;
    }
    .page-casino__section-title {
        font-size: 2.2em;
    }
    .page-casino__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-casino__hero-section {
        padding: 80px 0;
    }
    .page-casino__hero-title {
        font-size: 2.5em;
    }
    .page-casino__hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-casino__btn--secondary {
        margin-left: 0;
    }
    .page-casino__section-title {
        font-size: 2em;
    }
    .page-casino__section-intro {
        font-size: 1em;
    }
    .page-casino__feature-item,
    .page-casino__promo-card,
    .page-casino__step-item,
    .page-casino__detail-card {
        padding: 25px;
    }
    .page-casino__game-category,
    .page-casino__promo-cards,
    .page-casino__guide-steps,
    .page-casino__detail-cards {
        gap: 20px;
    }
    .page-casino__cta-title {
        font-size: 2em;
    }
    .page-casino__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-casino__hero-title {
        font-size: 2em;
    }
    .page-casino__hero-description {
        font-size: 0.95em;
    }
    .page-casino__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-casino__section-title {
        font-size: 1.8em;
    }
    .page-casino__game-title {
        font-size: 1.6em;
    }
    .page-casino__cta-title {
        font-size: 1.8em;
    }
}