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

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

.page-casino__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-casino__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-casino__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-casino__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-casino__highlight {
    color: #ffc107;
    font-weight: bold;
}

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

.page-casino__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.page-casino__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-casino__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    white-space: nowrap;
}

.page-casino__btn--primary {
    background-color: #ffc107;
    color: #000;
    border: 2px solid #ffc107;
}

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

.page-casino__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.page-casino__btn--secondary:hover {
    background-color: #fff;
    color: #007bff;
    transform: translateY(-2px);
}

.page-casino__btn--tertiary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.page-casino__btn--tertiary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

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

.page-casino__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-casino__about, .page-casino__games, .page-casino__promotions, .page-casino__guide-list, .page-casino__responsible-gaming, .page-casino__cta {
    padding: 60px 0;
    text-align: center;
}

.page-casino__about {
    background-color: #fff;
}

.page-casino__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #007bff;
    font-weight: bold;
}

.page-casino__section-intro {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555;
}

.page-casino__keyword {
    font-weight: bold;
    color: #0056b3;
}

.page-casino__features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

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

.page-casino__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-casino__feature-text {
    font-size: 1em;
    color: #666;
}

.page-casino__games {
    background-color: #e9ecef;
}

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

.page-casino__game-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-casino__game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-casino__game-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-casino__game-description {
    font-size: 0.95em;
    color: #666;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-casino__promotions {
    background-color: #fff;
}

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

.page-casino__promo-card {
    background-color: #f0f8ff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-casino__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-casino__promo-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-casino__promo-text {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
}

.page-casino__promo-cta {
    margin-top: 40px;
    font-size: 1.1em;
    color: #555;
}

.page-casino__link-text {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-casino__link-text:hover {
    color: #0056b3;
    text-decoration: underline;
}

.page-casino__guide-list {
    background-color: #e9ecef;
}

.page-casino__detail-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 40px auto 0 auto;
    text-align: left;
}

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

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

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

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

.page-casino__responsible-gaming {
    background-color: #fff;
}

.page-casino__responsible-text {
    font-size: 1em;
    max-width: 800px;
    margin: 20px auto 40px auto;
    color: #666;
}

.page-casino__cta {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #000;
    padding: 80px 0;
}

.page-casino__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #000;
}

.page-casino__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-casino__hero-title {
        font-size: 2.8em;
    }
    .page-casino__section-title {
        font-size: 2em;
    }
    .page-casino__cta-title {
        font-size: 2.5em;
    }
    .page-casino__features, .page-casino__game-categories, .page-casino__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-casino__hero {
        padding: 60px 0;
    }
    .page-casino__hero-title {
        font-size: 2.2em;
    }
    .page-casino__hero-description {
        font-size: 1em;
    }
    .page-casino__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-casino__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-casino__section-title {
        font-size: 1.8em;
    }
    .page-casino__about, .page-casino__games, .page-casino__promotions, .page-casino__guide-list, .page-casino__responsible-gaming, .page-casino__cta {
        padding: 40px 0;
    }
    .page-casino__cta-title {
        font-size: 2em;
    }
    .page-casino__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-casino__detail-card {
        margin: 20px auto 0 auto;
        padding: 20px;
    }
    .page-casino__detail-title {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-casino__hero-title {
        font-size: 1.8em;
    }
    .page-casino__section-title {
        font-size: 1.5em;
    }
    .page-casino__cta-title {
        font-size: 1.8em;
    }
    .page-casino__btn {
        width: 90%;
    }
    .page-casino__hero-actions {
        gap: 10px;
    }
    .page-casino__feature-item, .page-casino__game-card, .page-casino__promo-card {
        padding: 20px;
    }
    .page-casino__feature-title, .page-casino__game-title, .page-casino__promo-title {
        font-size: 1.2em;
    }
}