/* style/blog-safe-cockfighting-betting-fcb8.css */
:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --card-bg: #111111;
    --background-color: #0A0A0A;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --primary-color-rgb: 242, 193, 78;
    --card-bg-rgb: 17, 17, 17;
}

.page-blog-safe-cockfighting-betting-fcb8 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main-color); /* Body background is dark, so text should be light */
    background-color: var(--background-color);
}

.page-blog-safe-cockfighting-betting-fcb8__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-safe-cockfighting-betting-fcb8__section {
    padding: 60px 0;
    position: relative;
}

.page-blog-safe-cockfighting-betting-fcb8__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-safe-cockfighting-betting-fcb8__subtitle {
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.page-blog-safe-cockfighting-betting-fcb8__text-block {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-main-color);
}

.page-blog-safe-cockfighting-betting-fcb8__list,
.page-blog-safe-cockfighting-betting-fcb8__numbered-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-blog-safe-cockfighting-betting-fcb8__list-item,
.page-blog-safe-cockfighting-betting-fcb8__numbered-list .page-blog-safe-cockfighting-betting-fcb8__list-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-safe-cockfighting-betting-fcb8__numbered-list .page-blog-safe-cockfighting-betting-fcb8__list-item {
    counter-increment: list-counter;
}

.page-blog-safe-cockfighting-betting-fcb8__numbered-list .page-blog-safe-cockfighting-betting-fcb8__list-item::before {
    content: counter(list-counter) ". ";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 10px;
    flex-shrink: 0;
}

.page-blog-safe-cockfighting-betting-fcb8__list-item:hover,
.page-blog-safe-cockfighting-betting-fcb8__numbered-list .page-blog-safe-cockfighting-betting-fcb8__list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-safe-cockfighting-betting-fcb8__list-strong {
    color: var(--secondary-color);
    margin-right: 5px;
}

.page-blog-safe-cockfighting-betting-fcb8__inline-link {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-blog-safe-cockfighting-betting-fcb8__inline-link:hover {
    color: var(--primary-color);
}

/* HERO Section */
.page-blog-safe-cockfighting-betting-fcb8__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--background-color);
}

.page-blog-safe-cockfighting-betting-fcb8__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-blog-safe-cockfighting-betting-fcb8__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-safe-cockfighting-betting-fcb8__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-safe-cockfighting-betting-fcb8__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-blog-safe-cockfighting-betting-fcb8__hero-content h1 {
    color: var(--primary-color);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(242, 193, 78, 0.8);
}

.page-blog-safe-cockfighting-betting-fcb8__hero-content p {
    font-size: 19px;
    color: var(--text-main-color);
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-blog-safe-cockfighting-betting-fcb8__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 211, 107, 0.4);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-safe-cockfighting-betting-fcb8__cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 211, 107, 0.6);
}

.page-blog-safe-cockfighting-betting-fcb8__cta-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Image Wrappers */
.page-blog-safe-cockfighting-betting-fcb8__image-wrapper {
    margin: 40px 0;
    text-align: center;
}

.page-blog-safe-cockfighting-betting-fcb8__image-wrapper img {
    width: 100%;
    height: auto;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

/* Promotions Section */
.page-blog-safe-cockfighting-betting-fcb8__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-safe-cockfighting-betting-fcb8__promo-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-safe-cockfighting-betting-fcb8__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-safe-cockfighting-betting-fcb8__promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-safe-cockfighting-betting-fcb8__promo-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-blog-safe-cockfighting-betting-fcb8__promo-text {
    font-size: 16px;
    color: var(--text-main-color);
    flex-grow: 1;
}

/* FAQ Section */
details.page-blog-safe-cockfighting-betting-fcb8__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

details.page-blog-safe-cockfighting-betting-fcb8__faq-item summary.page-blog-safe-cockfighting-betting-fcb8__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
}

details.page-blog-safe-cockfighting-betting-fcb8__faq-item summary.page-blog-safe-cockfighting-betting-fcb8__faq-question::-webkit-details-marker {
    display: none;
}

details.page-blog-safe-cockfighting-betting-fcb8__faq-item summary.page-blog-safe-cockfighting-betting-fcb8__faq-question:hover {
    background: rgba(var(--primary-color-rgb), 0.1);
}

.page-blog-safe-cockfighting-betting-fcb8__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--secondary-color);
}

.page-blog-safe-cockfighting-betting-fcb8__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 20px;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

details.page-blog-safe-cockfighting-betting-fcb8__faq-item[open] .page-blog-safe-cockfighting-betting-fcb8__faq-toggle {
    transform: rotate(45deg);
}

details.page-blog-safe-cockfighting-betting-fcb8__faq-item .page-blog-safe-cockfighting-betting-fcb8__faq-answer {
    padding: 0 25px 25px;
    background: rgba(var(--card-bg-rgb), 0.5);
    border-radius: 0 0 8px 8px;
    font-size: 16px;
    color: var(--text-main-color);
}

/* General Image Styling (for content images) */
.page-blog-safe-cockfighting-betting-fcb8 img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-safe-cockfighting-betting-fcb8__section-title {
        font-size: 32px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__subtitle {
        font-size: 24px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__hero-content h1 {
        font-size: 48px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .page-blog-safe-cockfighting-betting-fcb8 {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-safe-cockfighting-betting-fcb8__section {
        padding: 40px 0;
    }
    .page-blog-safe-cockfighting-betting-fcb8__container {
        padding: 0 15px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__subtitle {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__text-block {
        font-size: 16px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__list-item,
    .page-blog-safe-cockfighting-betting-fcb8__numbered-list .page-blog-safe-cockfighting-betting-fcb8__list-item {
        padding: 12px 15px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__hero-image img {
        border-radius: 6px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__hero-content h1 {
        font-size: 38px;
        margin-bottom: 15px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__cta-button {
        padding: 12px 30px;
        font-size: 18px;
        margin-top: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-safe-cockfighting-betting-fcb8__image-wrapper img {
        border-radius: 8px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__promo-card {
        padding: 20px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__promo-title {
        font-size: 20px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__promo-card img {
        
    }
    details.page-blog-safe-cockfighting-betting-fcb8__faq-item summary.page-blog-safe-cockfighting-betting-fcb8__faq-question {
        padding: 15px 20px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__faq-qtext {
        font-size: 16px;
    }
    .page-blog-safe-cockfighting-betting-fcb8__faq-toggle {
        font-size: 24px;
        width: 25px;
    }
    details.page-blog-safe-cockfighting-betting-fcb8__faq-item .page-blog-safe-cockfighting-betting-fcb8__faq-answer {
        padding: 0 20px 20px;
    }
    .page-blog-safe-cockfighting-betting-fcb8 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-safe-cockfighting-betting-fcb8__section,
    .page-blog-safe-cockfighting-betting-fcb8__card,
    .page-blog-safe-cockfighting-betting-fcb8__container,
    .page-blog-safe-cockfighting-betting-fcb8__cta-wrapper,
    .page-blog-safe-cockfighting-betting-fcb8__promo-grid {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}