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

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

.page-betting-guides-hero {
    background: linear-gradient(135deg, #0047AB 0%, #002860 100%); /* Darker blue gradient for hero */
    color: #ffffff;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-betting-guides-hero-content {
    z-index: 1;
    max-width: 800px;
}

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

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

.page-betting-guides-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

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

.page-betting-guides-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    margin: 10px;
}

.page-betting-guides-btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0047AB; /* Royal Blue */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-betting-guides-btn-secondary {
    background-color: #0047AB; /* Royal Blue */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(0, 71, 171, 0.3);
}

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

.page-betting-guides-section {
    padding: 60px 0;
}

.page-betting-guides-section h2 {
    font-size: 2.5em;
    color: #0047AB;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

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

.page-betting-guides-why-choose {
    background-color: #f0f5f9; /* Light blue-grey for contrast */
}

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

.page-betting-guides-grid-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-betting-guides-grid-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

.page-betting-guides-grid-item h3 {
    font-size: 1.5em;
    color: #0047AB;
    margin-bottom: 15px;
}

.page-betting-guides-grid-item p {
    color: #666;
    font-size: 0.95em;
}

.page-betting-guides-articles {
    background-color: #ffffff;
}

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

.page-betting-guides-article-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-betting-guides-article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.page-betting-guides-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.page-betting-guides-article-card:hover .page-betting-guides-article-image img {
    transform: scale(1.05);
}

.page-betting-guides-article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-betting-guides-article-content h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-betting-guides-article-content h3 a {
    color: #0047AB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-betting-guides-article-content h3 a:hover {
    color: #FFD700;
}

.page-betting-guides-article-content p {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-betting-guides-benefits {
    background-color: #f0f5f9;
}

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

.page-betting-guides-benefit-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-betting-guides-benefit-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.page-betting-guides-benefit-item h3 {
    font-size: 1.3em;
    color: #0047AB;
    margin-bottom: 10px;
}

.page-betting-guides-benefit-item p {
    color: #666;
    font-size: 0.9em;
}

.page-betting-guides-cta {
    background: linear-gradient(90deg, #0047AB, #002860);
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.page-betting-guides-cta h2 {
    color: #FFD700;
    font-size: 2.8em;
    margin-bottom: 20px;
}

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

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

/* Floating Promotion Button */
.page-betting-guides-floating-promo-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #FFD700; /* Gold */
    color: #0047AB; /* Royal Blue */
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-betting-guides-floating-promo-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px) scale(1.02);
}

.page-betting-guides-promo-icon {
    font-size: 1.5em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-betting-guides-hero h1 {
        font-size: 2.8em;
    }
    .page-betting-guides-hero p {
        font-size: 1.1em;
    }
    .page-betting-guides-section h2 {
        font-size: 2em;
    }
    .page-betting-guides-article-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-betting-guides-cta h2 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-betting-guides-hero {
        padding: 80px 20px;
    }
    .page-betting-guides-hero h1 {
        font-size: 2.2em;
    }
    .page-betting-guides-hero p {
        font-size: 1em;
    }
    .page-betting-guides-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-betting-guides-section {
        padding: 40px 0;
    }
    .page-betting-guides-section h2 {
        font-size: 1.8em;
    }
    .page-betting-guides-grid {
        grid-template-columns: 1fr;
    }
    .page-betting-guides-article-list {
        grid-template-columns: 1fr;
    }
    .page-betting-guides-cta h2 {
        font-size: 1.8em;
    }
    .page-betting-guides-floating-promo-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-betting-guides-promo-icon {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-betting-guides-hero h1 {
        font-size: 1.8em;
    }
    .page-betting-guides-hero p {
        font-size: 0.9em;
    }
    .page-betting-guides-btn {
        margin: 5px;
    }
}