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

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

.page-betting-guides__hero {
    background: linear-gradient(135deg, #FFD700 0%, #2C3E50 100%); /* Gold to Dark Blue gradient */
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.page-betting-guides__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-betting-guides__hero > * {
    position: relative;
    z-index: 1;
}

.page-betting-guides__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-betting-guides__hero-title .highlight {
    color: #FFD700; /* Gold for highlight */
}

.page-betting-guides__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
    color: #eee;
}

.page-betting-guides__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-betting-guides__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-betting-guides__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #2C3E50; /* Dark Blue */
    border: 2px solid #FFD700;
}

.page-betting-guides__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-betting-guides__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-betting-guides__btn--secondary:hover {
    background-color: #FFD700;
    color: #2C3E50;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-betting-guides__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

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

.page-betting-guides__section-title {
    font-size: 2.5em;
    color: #2C3E50; /* Dark Blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-betting-guides__section-title .highlight {
    color: #FFD700; /* Gold */
}

.page-betting-guides__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-betting-guides__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 40px auto;
    color: #555;
}

.page-betting-guides__content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-betting-guides__content-block--reverse {
    flex-direction: row-reverse;
}

.page-betting-guides__text-content {
    flex: 1;
}

.page-betting-guides__text-content p {
    margin-bottom: 15px;
    color: #444;
}

.page-betting-guides__text-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-betting-guides__text-content ul li {
    margin-bottom: 10px;
    color: #444;
}

.page-betting-guides__text-content ul li strong {
    color: #2C3E50;
}

.page-betting-guides__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-betting-guides__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

.page-betting-guides__card {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-betting-guides__card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    /* Using filter to color SVG icons if they are monochromatic */
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6)); /* Gold glow */
}

.page-betting-guides__card-title {
    font-size: 1.6em;
    color: #2C3E50; /* Dark Blue */
    margin-bottom: 15px;
}

.page-betting-guides__strategy-item {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.page-betting-guides__strategy-item:last-child {
    margin-bottom: 0;
}

.page-betting-guides__strategy-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

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

.page-betting-guides__game-card {
    background-color: #fefefe;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-guides__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

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

.page-betting-guides__game-title {
    font-size: 1.5em;
    color: #2C3E50; /* Dark Blue */
    padding: 20px 20px 10px;
}

.page-betting-guides__game-card ul {
    list-style: none;
    padding: 0 20px 20px;
    margin: 0;
}

.page-betting-guides__game-card ul li {
    margin-bottom: 8px;
    font-size: 0.95em;
    color: #555;
}

.page-betting-guides__game-card ul li strong {
    color: #2C3E50;
}

.page-betting-guides__cta-bottom {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-betting-guides__related-guides {
    background-color: #f2f2f2;
}

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

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

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

.page-betting-guides__guide-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    min-height: 60px; /* Ensure consistent height */
}

.page-betting-guides__guide-title a {
    color: #2C3E50; /* Dark Blue */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-betting-guides__guide-title a:hover {
    color: #FFD700; /* Gold on hover */
}

.page-betting-guides__guide-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-betting-guides__btn--link {
    background-color: #2C3E50; /* Dark Blue */
    color: #FFD700; /* Gold */
    border: 1px solid #2C3E50;
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 5px;
    align-self: flex-start;
}

.page-betting-guides__btn--link:hover {
    background-color: #FFD700;
    color: #2C3E50;
    border-color: #FFD700;
}

.page-betting-guides__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #FFD700;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    visibility: hidden;
}

.page-betting-guides__floating-ad.is-visible {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.page-betting-guides__floating-ad:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-betting-guides__floating-ad a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #2C3E50;
    padding: 15px;
    width: 90px;
    height: 90px;
}

.page-betting-guides__floating-ad-image {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

.page-betting-guides__floating-ad-text {
    font-size: 0.85em;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-betting-guides__hero-title {
        font-size: 2.8em;
    }
    .page-betting-guides__section-title {
        font-size: 2em;
    }
    .page-betting-guides__content-block {
        flex-direction: column;
        text-align: center;
    }
    .page-betting-guides__content-block--reverse {
        flex-direction: column;
    }
    .page-betting-guides__text-content, .page-betting-guides__image-wrapper {
        width: 100%;
    }
    .page-betting-guides__text-content ul {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .page-betting-guides__hero {
        padding: 60px 15px;
    }
    .page-betting-guides__hero-title {
        font-size: 2.2em;
    }
    .page-betting-guides__hero-description {
        font-size: 1em;
    }
    .page-betting-guides__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-betting-guides__section {
        padding: 40px 0;
    }
    .page-betting-guides__section-title {
        font-size: 1.8em;
    }
    .page-betting-guides__grid, .page-betting-guides__game-grid, .page-betting-guides__guide-list {
        grid-template-columns: 1fr;
    }
    .page-betting-guides__card, .page-betting-guides__strategy-item, .page-betting-guides__game-card, .page-betting-guides__guide-item {
        padding: 20px;
    }
    .page-betting-guides__card-icon {
        width: 60px;
        height: 60px;
    }
    .page-betting-guides__floating-ad {
        bottom: 15px;
        right: 15px;
        width: 70px;
        height: 70px;
    }
    .page-betting-guides__floating-ad a {
        padding: 10px;
        width: 70px;
        height: 70px;
    }
    .page-betting-guides__floating-ad-image {
        width: 30px;
        height: 30px;
    }
    .page-betting-guides__floating-ad-text {
        font-size: 0.75em;
    }
}

@media (max-width: 480px) {
    .page-betting-guides__hero-title {
        font-size: 1.8em;
    }
    .page-betting-guides__section-title {
        font-size: 1.5em;
    }
    .page-betting-guides__hero-cta {
        flex-direction: column;
    }
    .page-betting-guides__btn {
        width: 80%;
        margin: 0 auto;
    }
}