/* style/game-rules-casino-general-rules.css */

/* General Styles for the page-game-rules-casino-general-rules component */
.page-game-rules-casino-general-rules {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray text for contrast on dark background */
    background-color: #0A0A0A; /* Main dark background */
    line-height: 1.6;
}

.page-game-rules-casino-general-rules__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-game-rules-casino-general-rules__hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #333333 100%); /* Dark gradient background */
}

.page-game-rules-casino-general-rules__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.page-game-rules-casino-general-rules__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-rules-casino-general-rules__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for main title */
    font-weight: bold;
    line-height: 1.2;
}

.page-game-rules-casino-general-rules__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-game-rules-casino-general-rules__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Accent color for button */
    color: #0A0A0A; /* Dark text on accent button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-rules-casino-general-rules__hero-button:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

/* Section Styles */
.page-game-rules-casino-general-rules__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-game-rules-casino-general-rules__section:last-of-type {
    border-bottom: none;
}

.page-game-rules-casino-general-rules__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-game-rules-casino-general-rules__sub-title {
    font-size: 1.8em;
    color: #FFFFFF;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-game-rules-casino-general-rules__mini-title {
    font-size: 1.4em;
    color: #E0E0E0;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-rules-casino-general-rules p {
    margin-bottom: 15px;
    color: #C0C0C0;
    font-size: 1.1em;
}

.page-game-rules-casino-general-rules ul,
.page-game-rules-casino-general-rules ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-game-rules-casino-general-rules li {
    margin-bottom: 10px;
    color: #C0C0C0;
    font-size: 1.05em;
}

.page-game-rules-casino-general-rules li strong {
    color: #FFD700;
}

.page-game-rules-casino-general-rules a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-rules-casino-general-rules a:hover {
    color: #E6C200;
    text-decoration: underline;
}

/* Image Styling */
.page-game-rules-casino-general-rules__image-right {
    float: right;
    margin: 0 0 20px 40px;
    max-width: 40%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.page-game-rules-casino-general-rules__image-left {
    float: left;
    margin: 0 40px 20px 0;
    max-width: 40%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.page-game-rules-casino-general-rules__image-right:hover,
.page-game-rules-casino-general-rules__image-left:hover {
    transform: scale(1.02);
}

/* Clearfix for floating images */
.page-game-rules-casino-general-rules__principles::after,
.page-game-rules-casino-general-rules__game-types::after,
.page-game-rules-casino-general-rules__account-rules::after,
.page-game-rules-casino-general-rules__support::after {
    content: "";
    display: table;
    clear: both;
}

/* Call to Action Section */
.page-game-rules-casino-general-rules__cta {
    text-align: center;
    background-color: #1A1A1A;
    padding: 80px 0;
}

.page-game-rules-casino-general-rules__cta .page-game-rules-casino-general-rules__section-title {
    color: #FFD700;
}

.page-game-rules-casino-general-rules__cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #C0C0C0;
}

.page-game-rules-casino-general-rules__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A0A0A;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-rules-casino-general-rules__cta-button:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-rules-casino-general-rules__hero {
        height: 500px;
    }

    .page-game-rules-casino-general-rules__hero-title {
        font-size: 2.8em;
    }

    .page-game-rules-casino-general-rules__hero-subtitle {
        font-size: 1.2em;
    }

    .page-game-rules-casino-general-rules__section-title {
        font-size: 2em;
    }

    .page-game-rules-casino-general-rules__sub-title {
        font-size: 1.6em;
    }

    .page-game-rules-casino-general-rules__mini-title {
        font-size: 1.2em;
    }

    .page-game-rules-casino-general-rules__image-right,
    .page-game-rules-casino-general-rules__image-left {
        float: none;
        margin: 20px auto;
        max-width: 70%;
        display: block;
    }
}

@media (max-width: 768px) {
    .page-game-rules-casino-general-rules__hero {
        height: 400px;
    }

    .page-game-rules-casino-general-rules__hero-title {
        font-size: 2.2em;
    }

    .page-game-rules-casino-general-rules__hero-subtitle {
        font-size: 1em;
    }

    .page-game-rules-casino-general-rules__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-rules-casino-general-rules__section {
        padding: 40px 0;
    }

    .page-game-rules-casino-general-rules__section-title {
        font-size: 1.8em;
    }

    .page-game-rules-casino-general-rules__sub-title {
        font-size: 1.4em;
    }

    .page-game-rules-casino-general-rules p,
    .page-game-rules-casino-general-rules li {
        font-size: 1em;
    }

    .page-game-rules-casino-general-rules__image-right,
    .page-game-rules-casino-general-rules__image-left {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .page-game-rules-casino-general-rules__hero {
        height: 350px;
    }

    .page-game-rules-casino-general-rules__hero-title {
        font-size: 1.8em;
    }

    .page-game-rules-casino-general-rules__hero-subtitle {
        font-size: 0.9em;
    }

    .page-game-rules-casino-general-rules__hero-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-game-rules-casino-general-rules__container {
        padding: 15px;
    }

    .page-game-rules-casino-general-rules__section-title {
        font-size: 1.5em;
    }

    .page-game-rules-casino-general-rules__sub-title {
        font-size: 1.2em;
    }

    .page-game-rules-casino-general-rules__cta-button {
        padding: 15px 25px;
        font-size: 1.1em;
    }
}