/* style/blog-v8bet-safe-betting-tips.css */

/* Variables from custom color palette */
:root {
    --v8bet-primary: #11A84E;
    --v8bet-secondary: #22C768;
    --v8bet-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --v8bet-card-bg: #11271B;
    --v8bet-bg: #08160F; /* This is the main body background, but shared.css handles body bg */
    --v8bet-text-main: #F2FFF6;
    --v8bet-text-secondary: #A7D9B8;
    --v8bet-border: #2E7A4E;
    --v8bet-glow: #57E38D;
    --v8bet-gold: #F2C14E;
    --v8bet-divider: #1E3A2A;
    --v8bet-deep-green: #0A4B2C;
}

/* Base styles for the page content */
.page-blog-v8bet-safe-betting-tips {
    color: var(--v8bet-text-main); /* Light text for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--v8bet-bg); /* Ensure sections have background, as body is handled by shared */
}

/* Hero Section */
.page-blog-v8bet-safe-betting-tips__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
    overflow: hidden;
    background-color: var(--v8bet-deep-green); /* Use a brand-related dark background */
}

.page-blog-v8bet-safe-betting-tips__hero-image-wrapper {
    width: 100%;
    max-width: 100%; /* Ensure image wrapper is full width */
    overflow: hidden;
}

.page-blog-v8bet-safe-betting-tips__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Limit height for aesthetic */
}

.page-blog-v8bet-safe-betting-tips__hero-content {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-blog-v8bet-safe-betting-tips__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
    color: var(--v8bet-text-main);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-v8bet-safe-betting-tips__subtitle {
    font-size: 1.2rem;
    color: var(--v8bet-text-secondary);
    margin-bottom: 30px;
}

/* CTA Buttons */
.page-blog-v8bet-safe-betting-tips__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}