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

.page-interactive-game-guides-poker-rules__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-interactive-game-guides-poker-rules__hero {
    background: linear-gradient(135deg, #003366, #1a4d80);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.page-interactive-game-guides-poker-rules__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.page-interactive-game-guides-poker-rules__hero .page-interactive-game-guides-poker-rules__container {
    position: relative;
    z-index: 2;
}

.page-interactive-game-guides-poker-rules__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-interactive-game-guides-poker-rules__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-interactive-game-guides-poker-rules__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-interactive-game-guides-poker-rules__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-interactive-game-guides-poker-rules__btn--primary {
    background-color: #FFD700;
    color: #003366;
    border: 2px solid #FFD700;
}

.page-interactive-game-guides-poker-rules__btn--primary:hover {
    background-color: #e6c200;
    color: #001a33;
    border-color: #e6c200;
}

.page-interactive-game-guides-poker-rules__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-interactive-game-guides-poker-rules__btn--secondary:hover {
    background-color: #FFD700;
    color: #003366;
}

.page-interactive-game-guides-poker-rules__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-interactive-game-guides-poker-rules__section--intro {
    background-color: #f0f4f7;
    padding: 40px 0;
    text-align: center;
    border-radius: 0;
    box-shadow: none;
}

.page-interactive-game-guides-poker-rules__section-title {
    font-size: 2em;
    color: #003366;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-interactive-game-guides-poker-rules__section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #FFD700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.page-interactive-game-guides-poker-rules__game-guide h2 {
    font-size: 1.8em;
    color: #003366;
    margin-top: 40px;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 5px solid #FFD700;
}

.page-interactive-game-guides-poker-rules__game-guide h3 {
    font-size: 1.4em;
    color: #1a4d80;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-interactive-game-guides-poker-rules__game-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.page-interactive-game-guides-poker-rules__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-interactive-game-guides-poker-rules__list li {
    background-color: #fdfdfd;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 4px solid #003366;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    color: #333;
}

.page-interactive-game-guides-poker-rules__list li strong {
    color: #003366;
}

.page-interactive-game-guides-poker-rules__tips-section {
    background-color: #e6f0f7;
}

.page-interactive-game-guides-poker-rules__cta-bottom {
    background: #003366;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    border-radius: 8px;
    margin-top: 40px;
}

.page-interactive-game-guides-poker-rules__cta-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-interactive-game-guides-poker-rules__cta-description {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.page-interactive-game-guides-poker-rules__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-interactive-game-guides-poker-rules__hero-title {
        font-size: 2em;
    }

    .page-interactive-game-guides-poker-rules__hero-subtitle {
        font-size: 1em;
    }

    .page-interactive-game-guides-poker-rules__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-interactive-game-guides-poker-rules__section-title {
        font-size: 1.8em;
    }

    .page-interactive-game-guides-poker-rules__game-guide h2 {
        font-size: 1.5em;
    }

    .page-interactive-game-guides-poker-rules__game-guide h3 {
        font-size: 1.2em;
    }

    .page-interactive-game-guides-poker-rules__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-interactive-game-guides-poker-rules__hero-title {
        font-size: 1.8em;
    }

    .page-interactive-game-guides-poker-rules__hero-subtitle {
        font-size: 0.9em;
    }

    .page-interactive-game-guides-poker-rules__hero-buttons,
    .page-interactive-game-guides-poker-rules__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-interactive-game-guides-poker-rules__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-interactive-game-guides-poker-rules__section-title {
        font-size: 1.5em;
    }

    .page-interactive-game-guides-poker-rules__game-guide h2 {
        font-size: 1.3em;
    }

    .page-interactive-game-guides-poker-rules__game-guide h3 {
        font-size: 1.1em;
    }

    .page-interactive-game-guides-poker-rules__cta-title {
        font-size: 1.8em;
    }
}