/* style/casino.css */
.page-casino {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-casino__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-casino__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-casino__section-title {
    font-size: 2.5em;
    color: #1E90FF;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.page-casino__section-title .highlight {
    color: #FFD700;
}

.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 30px auto;
    color: #555;
}

.page-casino__text-center {
    text-align: center;
}

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

.page-casino__btn--primary {
    background-color: #FFD700;
    color: #1E90FF;
    border: 2px solid #FFD700;
}

.page-casino__btn--primary:hover {
    background-color: #1E90FF;
    color: #FFD700;
    border-color: #1E90FF;
}

.page-casino__btn--secondary {
    background-color: #1E90FF;
    color: #FFD700;
    border: 2px solid #1E90FF;
}

.page-casino__btn--secondary:hover {
    background-color: #FFD700;
    color: #1E90FF;
    border-color: #FFD700;
}

.page-casino__btn--download {
    background-color: #28a745;
    color: #fff;
    border: 2px solid #28a745;
}

.page-casino__btn--download:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.page-casino__btn--link {
    color: #1E90FF;
    background: none;
    border: none;
    padding: 0;
    text-decoration: underline;
}

.page-casino__btn--link:hover {
    color: #0056b3;
}

.page-casino__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
    margin: 10px;
}

.page-casino__hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.page-casino__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.page-casino__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    z-index: -1;
}

.page-casino__hero .page-casino__container {
    z-index: 1;
}

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

.page-casino__hero-title .highlight {
    color: #fff;
}

.page-casino__hero-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #eee;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

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

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

.page-casino__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.page-casino__card-title {
    font-size: 1.5em;
    color: #1E90FF;
    margin-bottom: 15px;
}

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

.page-casino__game-card {
    background-color: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-casino__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.page-casino__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-casino__game-title {
    font-size: 1.4em;
    color: #1E90FF;
    padding: 20px 20px 10px;
    font-weight: bold;
}

.page-casino__game-description {
    padding: 0 20px 20px;
    color: #666;
    flex-grow: 1;
}

.page-casino__game-card .page-casino__btn {
    margin: 0 20px 20px;
    align-self: flex-start;
}

.page-casino__content-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-casino__content-flex--reverse {
    flex-direction: row-reverse;
}

.page-casino__text-content {
    flex: 1;
    min-width: 300px;
}

.page-casino__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-casino__image--responsive {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-casino__list, .page-casino__strategy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-casino__list li, .page-casino__strategy-list li {
    background-color: #fdfdfd;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    color: #444;
}

.page-casino__list li .highlight, .page-casino__strategy-list li .highlight {
    color: #1E90FF;
    font-weight: bold;
}

.page-casino__cta-buttons {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.page-casino__cta-image, .page-casino__info-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.page-casino__detail-card {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

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

.page-casino__detail-title a {
    color: #1E90FF;
    text-decoration: none;
    font-weight: bold;
}

.page-casino__detail-title a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.page-casino__detail-description {
    color: #666;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-casino__hero-title {
        font-size: 2.8em;
    }
    .page-casino__hero-description {
        font-size: 1.1em;
    }
    .page-casino__section-title {
        font-size: 2em;
    }
    .page-casino__content-flex {
        flex-direction: column;
    }
    .page-casino__content-flex--reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-casino__hero {
        height: 400px;
    }
    .page-casino__hero-title {
        font-size: 2.2em;
    }
    .page-casino__hero-description {
        font-size: 1em;
    }
    .page-casino__section {
        padding: 40px 0;
    }
    .page-casino__section-title {
        font-size: 1.8em;
    }
    .page-casino__grid, .page-casino__game-list, .page-casino__detail-list {
        grid-template-columns: 1fr;
    }
    .page-casino__cta-buttons {
        flex-direction: column;
    }
    .page-casino__btn--large {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .page-casino__hero {
        height: 350px;
    }
    .page-casino__hero-title {
        font-size: 1.8em;
    }
    .page-casino__hero-description {
        font-size: 0.9em;
    }
    .page-casino__section-title {
        font-size: 1.5em;
    }
    .page-casino__btn--large {
        width: 95%;
    }
}