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

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

.page-betting-guides-odds-understanding__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-betting-guides-odds-understanding__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-betting-guides-odds-understanding__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-betting-guides-odds-understanding__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-betting-guides-odds-understanding__link--betvisa {
    color: #ffc107;
    text-decoration: underline;
}

.page-betting-guides-odds-understanding__link--betvisa:hover {
    color: #fff;
}

.page-betting-guides-odds-understanding__button {
    display: inline-block;
    background-color: #ffc107;
    color: #333;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid transparent;
}

.page-betting-guides-odds-understanding__button:hover {
    background-color: #e0a800;
    color: #000;
}

.page-betting-guides-odds-understanding__button--secondary {
    background-color: #0056b3;
    color: #fff;
    border-color: #0056b3;
}

.page-betting-guides-odds-understanding__button--secondary:hover {
    background-color: #003f80;
    border-color: #003f80;
}

.page-betting-guides-odds-understanding__button--ghost {
    background-color: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
}

.page-betting-guides-odds-understanding__button--ghost:hover {
    background-color: #ffc107;
    color: #333;
}

.page-betting-guides-odds-understanding__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-betting-guides-odds-understanding__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

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

.page-betting-guides-odds-understanding__section:last-of-type {
    border-bottom: none;
}

.page-betting-guides-odds-understanding__section-title {
    font-size: 2.2em;
    color: #007bff;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

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

.page-betting-guides-odds-understanding__introduction p,
.page-betting-guides-odds-understanding__implied-probability p,
.page-betting-guides-odds-understanding__responsible-gaming p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #555;
}

.page-betting-guides-odds-understanding__highlight {
    color: #007bff;
    font-weight: bold;
}

.page-betting-guides-odds-understanding__odds-types {
    background-color: #e9f7ff;
}

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

.page-betting-guides-odds-understanding__type-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-guides-odds-understanding__type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-betting-guides-odds-understanding__type-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-betting-guides-odds-understanding__type-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
    text-align: left;
}

.page-betting-guides-odds-understanding__type-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

.page-betting-guides-odds-understanding__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.page-betting-guides-odds-understanding__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-betting-guides-odds-understanding__section-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-betting-guides-odds-understanding__cta {
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-betting-guides-odds-understanding__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
}

.page-betting-guides-odds-understanding__cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-betting-guides-odds-understanding__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-betting-guides-odds-understanding__title {
        font-size: 2.5em;
    }
    .page-betting-guides-odds-understanding__subtitle {
        font-size: 1.1em;
    }
    .page-betting-guides-odds-understanding__section-title {
        font-size: 1.8em;
    }
    .page-betting-guides-odds-understanding__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-betting-guides-odds-understanding__hero {
        padding: 60px 0;
    }
    .page-betting-guides-odds-understanding__title {
        font-size: 2em;
    }
    .page-betting-guides-odds-understanding__subtitle {
        font-size: 1em;
    }
    .page-betting-guides-odds-understanding__section {
        padding: 40px 0;
    }
    .page-betting-guides-odds-understanding__section-title {
        font-size: 1.6em;
    }
    .page-betting-guides-odds-understanding__type-grid {
        grid-template-columns: 1fr;
    }
    .page-betting-guides-odds-understanding__cta {
        padding: 60px 0;
    }
    .page-betting-guides-odds-understanding__cta-title {
        font-size: 1.8em;
    }
    .page-betting-guides-odds-understanding__cta p {
        font-size: 1em;
    }
    .page-betting-guides-odds-understanding__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-betting-guides-odds-understanding__title {
        font-size: 1.8em;
    }
    .page-betting-guides-odds-understanding__subtitle {
        font-size: 0.9em;
    }
    .page-betting-guides-odds-understanding__section-title {
        font-size: 1.4em;
    }
    .page-betting-guides-odds-understanding__cta-title {
        font-size: 1.6em;
    }
    .page-betting-guides-odds-understanding__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-betting-guides-odds-understanding__button {
        width: 80%;
        max-width: 300px;
    }
}