/* style/casino.css */

/* Biến CSS */
:root {
    --page-casino-primary-color: #007bff;
    --page-casino-secondary-color: #ffc107;
    --page-casino-dark-text: #212529;
    --page-casino-light-text: #f8f9fa;
    --page-casino-background-light: #ffffff;
    --page-casino-background-dark: #343a40;
    --page-casino-border-color: #dee2e6;
}

.page-casino {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-casino-dark-text);
    background-color: var(--page-casino-background-light);
}

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

/* Hero Section */
.page-casino__hero-section {
    background: linear-gradient(135deg, var(--page-casino-primary-color) 0%, #0056b3 50%, #003ef8 100%);
    color: var(--page-casino-light-text);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-casino__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--page-casino-light-text);
}

.page-casino__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: rgba(255, 255, 255, 0.9);
}

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

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

/* Buttons */
.page-casino__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-casino__btn--primary {
    background-color: var(--page-casino-secondary-color);
    color: var(--page-casino-dark-text);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-casino__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-casino__btn--secondary {
    background-color: var(--page-casino-primary-color);
    color: var(--page-casino-light-text);
    border: 2px solid var(--page-casino-primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

/* Section Styling */
.page-casino__intro-section, 
.page-casino__games-section, 
.page-casino__promo-section, 
.page-casino__security-section, 
.page-casino__how-to-start-section, 
.page-casino__conclusion-section {
    padding: 60px 0;
    text-align: center;
}

.page-casino__intro-section, .page-casino__security-section, .page-casino__how-to-start-section {
    background-color: #f8f9fa;
}

.page-casino__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--page-casino-primary-color);
    font-weight: bold;
}

.page-casino__section-text {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--page-casino-dark-text);
}

.page-casino__keyword {
    color: var(--page-casino-primary-color);
    font-weight: bold;
}

/* Image Styling */
.page-casino__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-casino__image--small {
    max-width: 700px;
    margin: 30px auto;
    display: block;
}

/* Games Section Specific */
.page-casino__games-section {
    background-color: var(--page-casino-background-light);
}

.page-casino__game-category {
    background-color: #ffffff;
    border: 1px solid var(--page-casino-border-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-casino__category-title {
    font-size: 1.8em;
    color: var(--page-casino-primary-color);
    margin-bottom: 15px;
}

.page-casino__category-description {
    font-size: 1em;
    color: var(--page-casino-dark-text);
    margin-bottom: 25px;
}

/* How-To-Start Section */
.page-casino__steps-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-casino__steps-list li {
    background-color: #ffffff;
    border-left: 5px solid var(--page-casino-secondary-color);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.page-casino__steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--page-casino-secondary-color);
    color: var(--page-casino-dark-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-casino__step-title {
    font-size: 1.5em;
    color: var(--page-casino-primary-color);
    margin-bottom: 10px;
}

.page-casino__steps-list p {
    font-size: 1em;
    color: var(--page-casino-dark-text);
}

/* Responsive Design */
@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__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-casino__intro-section, 
    .page-casino__games-section, 
    .page-casino__promo-section, 
    .page-casino__security-section, 
    .page-casino__how-to-start-section, 
    .page-casino__conclusion-section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .page-casino__hero-section {
        padding: 60px 0;
        min-height: 400px;
    }
    .page-casino__hero-title {
        font-size: 2.2em;
    }
    .page-casino__hero-description {
        font-size: 1em;
    }
    .page-casino__section-title {
        font-size: 1.8em;
    }
    .page-casino__category-title {
        font-size: 1.5em;
    }
    .page-casino__steps-list li::before {
        left: 15px;
        top: -20px;
        transform: none;
    }
    .page-casino__steps-list li {
        padding-top: 50px;
        text-align: center;
    }
    .page-casino__step-title {
        text-align: center;
    }
    .page-casino__steps-list p {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .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 {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-casino__game-category {
        padding: 20px;
    }
    .page-casino__steps-list li {
        padding-left: 15px;
        padding-right: 15px;
    }
}