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

.page-betting-guide__hero {
    background: linear-gradient(135deg, #0A2463 0%, #2a4a83 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-betting-guide__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.page-betting-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #F3C700; /* Bright gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-betting-guide__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-betting-guide__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

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

.page-betting-guide__cta-button {
    display: inline-block;
    background-color: #F3C700; /* Bright gold for CTA */
    color: #0A2463; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-betting-guide__cta-button:hover {
    background-color: #e0b400; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-betting-guide__cta-button--secondary {
    background-color: #0A2463;
    color: #F3C700;
    border: 2px solid #F3C700;
}

.page-betting-guide__cta-button--secondary:hover {
    background-color: #1a3a7a;
    border-color: #e0b400;
}

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

.page-betting-guide__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-betting-guide__section:last-of-type {
    border-bottom: none;
}

.page-betting-guide__section-title {
    font-size: 2.2em;
    color: #0A2463; /* Dark blue for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-betting-guide__section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #F3C700; /* Gold underline */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

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

.page-betting-guide__intro .page-betting-guide__cta-button {
    margin-top: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-betting-guide__getting-started {
    background-color: #f9f9f9;
}

.page-betting-guide__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-betting-guide__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-guide__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-betting-guide__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-betting-guide__step-item h3 {
    color: #0A2463;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-betting-guide__step-item p {
    color: #555;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-betting-guide__button-small {
    display: inline-block;
    background-color: #F3C700;
    color: #0A2463;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.page-betting-guide__button-small:hover {
    background-color: #e0b400;
}

.page-betting-guide__bet-types ul {
    list-style: disc inside;
    font-size: 1.1em;
    color: #444;
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-betting-guide__bet-types ul li {
    margin-bottom: 10px;
}

.page-betting-guide__bet-types ul li strong {
    color: #0A2463;
}

.page-betting-guide__factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-betting-guide__factor-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-betting-guide__factor-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
}

.page-betting-guide__factor-item h3 {
    color: #0A2463;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-betting-guide__factor-item p {
    color: #555;
    font-size: 0.95em;
}

.page-betting-guide__strategies {
    background-color: #f0f4f8; /* Lighter blue-gray background */
}

.page-betting-guide__detail-pages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-betting-guide__detail-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-guide__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-betting-guide__detail-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-betting-guide__detail-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-betting-guide__detail-item h3 a {
    color: #0A2463;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-betting-guide__detail-item h3 a:hover {
    color: #F3C700;
}

.page-betting-guide__detail-item p {
    color: #555;
    font-size: 0.95em;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-betting-guide__responsible-betting {
    background-color: #fff;
}

.page-betting-guide__responsible-betting ul {
    list-style: none;
    padding: 0;
    font-size: 1.1em;
    color: #444;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-betting-guide__responsible-betting ul li {
    background-color: #e6f0fa; /* Light blue background for list items */
    border-left: 5px solid #0A2463;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.page-betting-guide__responsible-betting ul li strong {
    color: #0A2463;
}

.page-betting-guide__faq {
    background-color: #f9f9f9;
}

.page-betting-guide__faq-item {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-betting-guide__faq-item h3 {
    color: #0A2463;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-betting-guide__faq-item p {
    color: #555;
    font-size: 1em;
}

.page-betting-guide__final-cta {
    background: linear-gradient(45deg, #0A2463, #1e408a);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.page-betting-guide__final-cta-content {
    max-width: 800px;
}

.page-betting-guide__section-title--light {
    color: #F3C700;
}

.page-betting-guide__section-title--light::after {
    background-color: #ffffff;
}

.page-betting-guide__final-cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-betting-guide__final-cta-note {
    margin-top: 20px;
    font-size: 0.9em;
    color: #cccccc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-betting-guide__hero {
        padding: 60px 15px;
    }

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

    .page-betting-guide__hero-subtitle {
        font-size: 1.2em;
    }

    .page-betting-guide__section {
        padding: 40px 0;
    }

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

    .page-betting-guide__steps, .page-betting-guide__factors-grid, .page-betting-guide__detail-pages-list {
        grid-template-columns: 1fr;
    }

    .page-betting-guide__intro p, .page-betting-guide__bet-types ul, .page-betting-guide__responsible-betting ul, .page-betting-guide__faq-item p, .page-betting-guide__final-cta p {
        font-size: 1em;
    }

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

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

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

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

    .page-betting-guide__step-item, .page-betting-guide__factor-item, .page-betting-guide__detail-item, .page-betting-guide__faq-item {
        padding: 20px;
    }

    .page-betting-guide__button-small {
        padding: 8px 15px;
        font-size: 0.85em;
    }
}