/* style/resources-cockfighting-betting-strategies.css */

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --register-button-color: #C30808;
    --login-button-color: #C30808;
    --text-color-light-bg: #333333;
    --text-color-dark-bg: #FFFFFF;
    --register-login-font-color: #FFFF00;
}

.page-resources-cockfighting-betting-strategies {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-light-bg); /* Default text color for light backgrounds */
    background-color: var(--secondary-color); /* Default page background */
}

.page-resources-cockfighting-betting-strategies__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color-dark-bg);
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-cockfighting-betting-strategies__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-cockfighting-betting-strategies__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-resources-cockfighting-betting-strategies__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.page-resources-cockfighting-betting-strategies__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--text-color-dark-bg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-cockfighting-betting-strategies__description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-color-dark-bg);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-cockfighting-betting-strategies__btn-primary,
.page-resources-cockfighting-betting-strategies__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-cockfighting-betting-strategies__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color-dark-bg);
    border: 2px solid var(--primary-color);
}

.page-resources-cockfighting-betting-strategies__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: translateY(-2px);
}

.page-resources-cockfighting-betting-strategies__btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-cockfighting-betting-strategies__btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.page-resources-cockfighting-betting-strategies__btn-register {
  background-color: var(--register-button-color);
  color: var(--register-login-font-color);
  border: 2px solid var(--register-button-color);
}

.page-resources-cockfighting-betting-strategies__btn-login {
  background-color: var(--login-button-color);
  color: var(--register-login-font-color);
  border: 2px solid var(--login-button-color);
}

.page-resources-cockfighting-betting-strategies__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--secondary-color);
    color: var(--text-color-light-bg);
}

.page-resources-cockfighting-betting-strategies__container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-resources-cockfighting-betting-strategies__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.page-resources-cockfighting-betting-strategies__sub-section-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-cockfighting-betting-strategies__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-cockfighting-betting-strategies__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-resources-cockfighting-betting-strategies__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-resources-cockfighting-betting-strategies__list--two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.page-resources-cockfighting-betting-strategies__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-resources-cockfighting-betting-strategies__grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-resources-cockfighting-betting-strategies__card {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    color: var(--text-color-light-bg);
    transition: transform 0.3s ease;
}

.page-resources-cockfighting-betting-strategies__card:hover {
    transform: translateY(-5px);
}

.page-resources-cockfighting-betting-strategies__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-cockfighting-betting-strategies__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-resources-cockfighting-betting-strategies__faq-section {
    background-color: var(--primary-color);
    color: var(--text-color-dark-bg);
    padding: 60px 20px;
}

.page-resources-cockfighting-betting-strategies__faq-section .page-resources-cockfighting-betting-strategies__section-title {
    color: var(--text-color-dark-bg);
}

.page-resources-cockfighting-betting-strategies__faq-list {
    max-width: 900px;
    margin: 30px auto 0 auto;
}

.page-resources-cockfighting-betting-strategies__faq-item {
    background-color: var(--secondary-color);
    color: var(--text-color-light-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-cockfighting-betting-strategies__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--primary-color);
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    list-style: none;
}

.page-resources-cockfighting-betting-strategies__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-resources-cockfighting-betting-strategies__faq-item summary::marker {
    display: none;
}

.page-resources-cockfighting-betting-strategies__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-cockfighting-betting-strategies__faq-item[open] .page-resources-cockfighting-betting-strategies__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-cockfighting-betting-strategies__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    color: var(--text-color-light-bg);
}

.page-resources-cockfighting-betting-strategies__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-cockfighting-betting-strategies__video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-cockfighting-betting-strategies__video-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color-dark-bg);
  font-size: 1.8em;
  font-weight: bold;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.page-resources-cockfighting-betting-strategies__video-wrapper:hover .page-resources-cockfighting-betting-strategies__video-cta-overlay {
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-resources-cockfighting-betting-strategies__main-title {
        font-size: 2.8em;
    }
    .page-resources-cockfighting-betting-strategies__description {
        font-size: 1.1em;
    }
    .page-resources-cockfighting-betting-strategies__list--two-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-resources-cockfighting-betting-strategies__hero-section {
        height: 450px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-cockfighting-betting-strategies__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-resources-cockfighting-betting-strategies__description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-resources-cockfighting-betting-strategies__section-title {
        font-size: 2em;
    }
    .page-resources-cockfighting-betting-strategies__sub-section-title {
        font-size: 1.5em;
    }
    .page-resources-cockfighting-betting-strategies__text-block,
    .page-resources-cockfighting-betting-strategies__list-item,
    .page-resources-cockfighting-betting-strategies__faq-answer p {
        font-size: 1em;
    }
    .page-resources-cockfighting-betting-strategies__btn-primary,
    .page-resources-cockfighting-betting-strategies__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
        width: 100% !important; /* Force full width on mobile */
        margin: 5px 0;
    }
    .page-resources-cockfighting-betting-strategies__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
        padding: 0 15px;
    }

    /* Mobile image responsiveness */
    .page-resources-cockfighting-betting-strategies img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Mobile video responsiveness */
    .page-resources-cockfighting-betting-strategies video,
    .page-resources-cockfighting-betting-strategies__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Mobile container responsiveness */
    .page-resources-cockfighting-betting-strategies__section,
    .page-resources-cockfighting-betting-strategies__card,
    .page-resources-cockfighting-betting-strategies__container,
    .page-resources-cockfighting-betting-strategies__video-section,
    .page-resources-cockfighting-betting-strategies__video-container,
    .page-resources-cockfighting-betting-strategies__video-wrapper,
    .page-resources-cockfighting-betting-strategies__cta-buttons,
    .page-resources-cockfighting-betting-strategies__button-group,
    .page-resources-cockfighting-betting-strategies__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    
    .page-resources-cockfighting-betting-strategies__grid-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-resources-cockfighting-betting-strategies__main-title {
        font-size: 1.8em;
    }
    .page-resources-cockfighting-betting-strategies__section-title {
        font-size: 1.6em;
    }
}