/* style/betting-guide.css */
.page-betting-guide {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #1A202C;
    line-height: 1.6;
}

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

.page-betting-guide__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
    color: #FFD700;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.page-betting-guide__hero-content {
    z-index: 10;
    max-width: 800px;
}

.page-betting-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-betting-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-betting-guide__hero-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    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-betting-guide__hero-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-betting-guide__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 0;
}

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

.page-betting-guide__introduction,
.page-betting-guide__principles,
.page-betting-guide__game-guides,
.page-betting-guide__advanced-strategies,
.page-betting-guide__risk-management,
.page-betting-guide__pg88-features,
.page-betting-guide__why-pg88,
.page-betting-guide__cta {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-betting-guide__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-betting-guide__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-betting-guide__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #B0B0B0;
    text-align: justify;
}

.page-betting-guide__principle-item,
.page-betting-guide__strategy-item,
.page-betting-guide__risk-item,
.page-betting-guide__feature-item,
.page-betting-guide__reason-item {
    background-color: #2A313C;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-guide__principle-item:hover,
.page-betting-guide__strategy-item:hover,
.page-betting-guide__risk-item:hover,
.page-betting-guide__feature-item:hover,
.page-betting-guide__reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-betting-guide__principle-title,
.page-betting-guide__strategy-title,
.page-betting-guide__risk-title,
.page-betting-guide__feature-title,
.page-betting-guide__reason-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-betting-guide__image-fullwidth {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    object-fit: cover;
}

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

.page-betting-guide__guide-item {
    background-color: #2A313C;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-guide__guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-betting-guide__guide-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-betting-guide__guide-description {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-betting-guide__guide-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.page-betting-guide__guide-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-betting-guide__cta {
    text-align: center;
    padding-bottom: 80px;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.page-betting-guide__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 1;
    position: relative;
}

.page-betting-guide__cta-description {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    position: relative;
}

.page-betting-guide__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    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);
    z-index: 1;
    position: relative;
}

.page-betting-guide__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.page-betting-guide__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

@media (max-width: 768px) {
    .page-betting-guide__hero-title {
        font-size: 2.5em;
    }

    .page-betting-guide__hero-description {
        font-size: 1em;
    }

    .page-betting-guide__section-title {
        font-size: 2em;
    }

    .page-betting-guide__principle-title,
    .page-betting-guide__strategy-title,
    .page-betting-guide__risk-title,
    .page-betting-guide__feature-title,
    .page-betting-guide__reason-title {
        font-size: 1.5em;
    }

    .page-betting-guide__guide-list {
        grid-template-columns: 1fr;
    }

    .page-betting-guide__cta-title {
        font-size: 2em;
    }

    .page-betting-guide__cta-description {
        font-size: 1em;
    }

    .page-betting-guide__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-betting-guide__hero {
        padding: 60px 15px;
    }

    .page-betting-guide__hero-title {
        font-size: 2em;
    }

    .page-betting-guide__hero-description {
        font-size: 0.9em;
    }

    .page-betting-guide__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-betting-guide__section-title {
        font-size: 1.8em;
    }

    .page-betting-guide__text {
        font-size: 0.95em;
    }

    .page-betting-guide__principle-item,
    .page-betting-guide__strategy-item,
    .page-betting-guide__risk-item,
    .page-betting-guide__feature-item,
    .page-betting-guide__reason-item,
    .page-betting-guide__guide-item {
        padding: 20px;
    }
}