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

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

/* Hero Section */
.page-betting-guides-hero {
    position: relative;
    background-color: #1A2E4E; /* Main color */
    color: #FFFFFF; /* White text for contrast */
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-betting-guides-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 46, 78, 0.9), rgba(255, 215, 0, 0.3)); /* Gradient overlay */
    z-index: 1;
}

.page-betting-guides-hero .page-betting-guides-container {
    position: relative;
    z-index: 2;
}

.page-betting-guides-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-betting-guides-hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

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

/* General Section Styles */
.page-betting-guides-section {
    padding: 60px 0;
}

.page-betting-guides-bg-light {
    background-color: #FFFFFF;
}

.page-betting-guides-bg-dark {
    background-color: #1A2E4E;
    color: #FFFFFF;
}

.page-betting-guides-section-title {
    font-size: 2.5em;
    color: #1A2E4E; /* Main color */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.page-betting-guides-section-title.page-betting-guides-text-gold {
    color: #FFD700;
}

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

.page-betting-guides-section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #555;
}

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

.page-betting-guides-text-content.page-betting-guides-text-light {
    color: #E0E0E0;
}

.page-betting-guides-highlight {
    color: #1A2E4E;
    font-weight: bold;
}

.page-betting-guides-bg-dark .page-betting-guides-highlight {
    color: #FFD700;
}

/* Grid for Guides List */
.page-betting-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-betting-guides-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #FFD700;
}

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

.page-betting-guides-card-title {
    font-size: 1.6em;
    color: #1A2E4E;
    margin-bottom: 15px;
    font-weight: bold;
}

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

/* Buttons */
.page-betting-guides-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-align: center;
    cursor: pointer;
}

.page-betting-guides-btn-primary {
    background-color: #FFD700; /* Gold */
    color: #1A2E4E; /* Dark blue */
    border: 2px solid #FFD700;
}

.page-betting-guides-btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-betting-guides-btn-secondary {
    background-color: #1A2E4E; /* Dark blue */
    color: #FFD700; /* Gold */
    border: 2px solid #1A2E4E;
}

.page-betting-guides-btn-secondary:hover {
    background-color: #0d1e3a;
    border-color: #0d1e3a;
    transform: translateY(-2px);
}

.page-betting-guides-btn-gold {
    background-color: #FFD700; /* Gold */
    color: #1A2E4E; /* Dark blue */
    border: 2px solid #FFD700;
}

.page-betting-guides-btn-gold:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-betting-guides-btn-large {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Responsible Gambling Section */
.page-betting-guides-responsible-gambling {
    text-align: center;
}

.page-betting-guides-responsible-gambling .page-betting-guides-section-title::after {
    background-color: #FFFFFF;
}

.page-betting-guides-flex-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-betting-guides-text-column {
    flex: 1;
    text-align: left;
}

.page-betting-guides-image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-betting-guides-image-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Call to Action Section */
.page-betting-guides-call-to-action {
    position: relative;
    background-color: #1A2E4E; /* Main color */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-betting-guides-call-to-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 46, 78, 0.9), rgba(255, 215, 0, 0.3)); /* Gradient overlay */
    z-index: 1;
}

.page-betting-guides-cta-content {
    position: relative;
    z-index: 2;
}

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

.page-betting-guides-call-to-action .page-betting-guides-section-title {
    color: #FFD700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-betting-guides-call-to-action .page-betting-guides-section-title::after {
    background-color: #FFFFFF;
}

.page-betting-guides-call-to-action .page-betting-guides-text-content {
    color: #E0E0E0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-betting-guides-hero-title {
        font-size: 2.8em;
    }
    .page-betting-guides-hero-subtitle {
        font-size: 1.3em;
    }
    .page-betting-guides-section-title {
        font-size: 2em;
    }
    .page-betting-guides-flex-row {
        flex-direction: column;
        text-align: center;
    }
    .page-betting-guides-text-column, .page-betting-guides-image-column {
        flex: none;
        width: 100%;
    }
    .page-betting-guides-image-column {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-betting-guides-hero {
        padding: 80px 0;
        min-height: 350px;
    }
    .page-betting-guides-hero-title {
        font-size: 2.2em;
    }
    .page-betting-guides-hero-subtitle {
        font-size: 1.1em;
    }
    .page-betting-guides-section {
        padding: 40px 0;
    }
    .page-betting-guides-section-title {
        font-size: 1.8em;
    }
    .page-betting-guides-grid {
        grid-template-columns: 1fr;
    }
    .page-betting-guides-card {
        padding: 25px;
    }
    .page-betting-guides-card-title {
        font-size: 1.4em;
    }
    .page-betting-guides-text-content {
        font-size: 1em;
    }
    .page-betting-guides-btn-large {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-betting-guides-hero {
        padding: 60px 0;
        min-height: 300px;
    }
    .page-betting-guides-hero-title {
        font-size: 1.8em;
    }
    .page-betting-guides-hero-subtitle {
        font-size: 0.9em;
    }
    .page-betting-guides-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-betting-guides-container {
        padding: 0 15px;
    }
}