/* style/blog-how-to-choose-reliable-betting-sites.css */

/* Custom Colors from config */
:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

.page-blog-how-to-choose-reliable-betting-sites {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-main); /* Main text color for dark background */
    background-color: var(--color-background); /* Body background */
}

.page-blog-how-to-choose-reliable-betting-sites__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Logo Carousel Section */
.page-blog-how-to-choose-reliable-betting-sites__logo-carousel-section {
    padding: 50px 0 30px; /* Fixed 50px top padding */
    background-color: var(--color-deep-green);
    border-bottom: 1px solid var(--color-divider);
}

.page-blog-how-to-choose-reliable-betting-sites__logo-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.page-blog-how-to-choose-reliable-betting-sites__logo-item {
    width: 80px;
    height: 80px;
    background-color: var(--color-card-bg);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-blog-how-to-choose-reliable-betting-sites__logo-item:hover {
    transform: translateY(-5px);
}

.page-blog-how-to-choose-reliable-betting-sites__logo-item img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
    filter: brightness(1.2); /* Slight brightness for visibility on dark bg */
}

/* Hero Section */
.page-blog-how-to-choose-reliable-betting-sites__hero-section {
    padding-top: 0; /* Important: 0 padding-top for hero section */
    padding-bottom: 60px;
    background-color: var(--color-background);
}

.page-blog-how-to-choose-reliable-betting-sites__hero-content-wrapper {
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    gap: 40px;
}

.page-blog-how-to-choose-reliable-betting-sites__hero-image-block {
    width: 100%;
    max-width: 1200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-reliable-betting-sites__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-how-to-choose-reliable-betting-sites__hero-content {
    text-align: center;
    max-width: 900px;
}

.page-blog-how-to-choose-reliable-betting-sites__main-title {
    font-size: clamp(2em, 4vw, 2.8em); /* H1 font size with clamp */
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-choose-reliable-betting-sites__intro-description {
    font-size: 1.1em;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.page-blog-how-to-choose-reliable-betting-sites__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-blog-how-to-choose-reliable-betting-sites__btn-primary,
.page-blog-how-to-choose-reliable-betting-sites__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-how-to-choose-reliable-betting-sites__btn-primary {
    background: var(--color-button-gradient);
    color: var(--color-text-main);
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-reliable-betting-sites__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-choose-reliable-betting-sites__btn-secondary {
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-reliable-betting-sites__btn-secondary:hover {
    background-color: rgba(242, 193, 78, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Content Area */
.page-blog-how-to-choose-reliable-betting-sites__content-area {
    padding: 60px 0;
    background-color: var(--color-background);
}

.page-blog-how-to-choose-reliable-betting-sites__section-heading {
    font-size: 2.2em;
    color: var(--color-gold);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}