/* style/game-guides-texas-holdem-deep-tutorial.css */

.page-game-guides-texas-holdem-deep-tutorial {
    font-family: 'Arial', sans-serif;
    color: #E5E5D1; /* Light text for dark background */
    background-color: #1A1A2E; /* Main dark background */
    line-height: 1.6;
}

.page-game-guides-texas-holdem-deep-tutorial__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-game-guides-texas-holdem-deep-tutorial__hero-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #3A3A5E 70%, #E0B34E 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #E0B34E;
}

.page-game-guides-texas-holdem-deep-tutorial__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B34E; /* Accent color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-game-guides-texas-holdem-deep-tutorial__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E5E5D1;
}

/* Content Section */
.page-game-guides-texas-holdem-deep-tutorial__content-section {
    padding: 60px 0;
    background-color: #1A1A2E;
}

.page-game-guides-texas-holdem-deep-tutorial__section-title {
    font-size: 2.5em;
    color: #E0B34E;
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-game-guides-texas-holdem-deep-tutorial__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E0B34E;
    border-radius: 2px;
}

.page-game-guides-texas-holdem-deep-tutorial__sub-section-title {
    font-size: 1.8em;
    color: #F0D78F; /* Slightly lighter accent for sub-titles */
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #E0B34E;
    padding-left: 15px;
}

.page-game-guides-texas-holdem-deep-tutorial__capital-title {
    font-size: 1.6em;
    color: #F0D78F;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-left: 10px;
    font-weight: bold;
}

.page-game-guides-texas-holdem-deep-tutorial__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E5E5D1;
}

.page-game-guides-texas-holdem-deep-tutorial__list {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 20px;
    color: #E5E5D1;
}

.page-game-guides-texas-holdem-deep-tutorial__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-game-guides-texas-holdem-deep-tutorial__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out;
}

.page-game-guides-texas-holdem-deep-tutorial__image:hover {
    transform: scale(1.02);
}

/* CTA Buttons */
.page-game-guides-texas-holdem-deep-tutorial__cta-button {
    display: inline-block;
    background-color: #E0B34E; /* Accent color for buttons */
    color: #1A1A2E; /* Dark text for light button */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-game-guides-texas-holdem-deep-tutorial__cta-button:hover {
    background-color: #F0D78F; /* Lighter accent on hover */
    transform: translateY(-3px);
}

.page-game-guides-texas-holdem-deep-tutorial__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 15px;
}

.page-game-guides-texas-holdem-deep-tutorial__cta-button--wide {
    display: block;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides-texas-holdem-deep-tutorial__cta-button--large {
    padding: 18px 40px;
    font-size: 1.4em;
}

/* Final CTA Section */
.page-game-guides-texas-holdem-deep-tutorial__final-cta-section {
    background-color: #0F0F1A; /* Even darker background */
    color: #E5E5D1;
    text-align: center;
    padding: 80px 0;
    border-top: 5px solid #E0B34E;
}

.page-game-guides-texas-holdem-deep-tutorial__final-cta-title {
    font-size: 3em;
    color: #E0B34E;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-game-guides-texas-holdem-deep-tutorial__final-cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #E5E5D1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-game-guides-texas-holdem-deep-tutorial__hero-title {
        font-size: 2.5em;
    }

    .page-game-guides-texas-holdem-deep-tutorial__hero-subtitle {
        font-size: 1.2em;
    }

    .page-game-guides-texas-holdem-deep-tutorial__section-title {
        font-size: 2em;
    }

    .page-game-guides-texas-holdem-deep-tutorial__sub-section-title {
        font-size: 1.5em;
    }

    .page-game-guides-texas-holdem-deep-tutorial__paragraph,
    .page-game-guides-texas-holdem-deep-tutorial__list li {
        font-size: 1em;
    }

    .page-game-guides-texas-holdem-deep-tutorial__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-game-guides-texas-holdem-deep-tutorial__final-cta-title {
        font-size: 2.2em;
    }

    .page-game-guides-texas-holdem-deep-tutorial__final-cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-game-guides-texas-holdem-deep-tutorial__hero-title {
        font-size: 2em;
    }

    .page-game-guides-texas-holdem-deep-tutorial__hero-subtitle {
        font-size: 1em;
    }

    .page-game-guides-texas-holdem-deep-tutorial__section-title {
        font-size: 1.8em;
    }

    .page-game-guides-texas-holdem-deep-tutorial__sub-section-title {
        font-size: 1.3em;
    }

    .page-game-guides-texas-holdem-deep-tutorial__cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-game-guides-texas-holdem-deep-tutorial__final-cta-title {
        font-size: 1.8em;
    }

    .page-game-guides-texas-holdem-deep-tutorial__final-cta-description {
        font-size: 1em;
    }
}