/* style/resources-mcw-cockfighting-betting-rules-tips.css */

/* Variables for colors */
:root {
    --mcw-primary-red: #CC0000;
    --mcw-secondary-gold: #FFD700;
    --mcw-dark-bg: #1a1a1a; /* Dark background to make red/gold pop */
    --mcw-text-light: #f0f0f0;
    --mcw-text-dark: #333;
    --mcw-border-color: #444;
}

.page-resources-mcw-cockfighting-betting-rules-tips {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--mcw-text-light);
    background-color: var(--mcw-dark-bg);
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-resources-mcw-cockfighting-betting-rules-tips .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-mcw-cockfighting-betting-rules-tips .hero-section {
    background: linear-gradient(135deg, var(--mcw-primary-red) 0%, #a00000 100%); /* Darker red gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-mcw-cockfighting-betting-rules-tips .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,luxury,dark]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-mcw-cockfighting-betting-rules-tips .hero-section .container {
    position: relative;
    z-index: 1;
}

.page-resources-mcw-cockfighting-betting-rules-tips .hero-section h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--mcw-secondary-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-mcw-cockfighting-betting-rules-tips .hero-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.page-resources-mcw-cockfighting-betting-rules-tips .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-resources-mcw-cockfighting-betting-rules-tips .btn-primary {
    background-color: var(--mcw-secondary-gold);
    color: var(--mcw-primary-red);
    border: 2px solid var(--mcw-secondary-gold);
}

.page-resources-mcw-cockfighting-betting-rules-tips .btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-resources-mcw-cockfighting-betting-rules-tips .btn-secondary {
    background-color: transparent;
    color: var(--mcw-secondary-gold);
    border: 2px solid var(--mcw-secondary-gold);
    margin-left: 20px;
}

.page-resources-mcw-cockfighting-betting-rules-tips .btn-secondary:hover {
    background-color: var(--mcw-secondary-gold);
    color: var(--mcw-primary-red);
    transform: translateY(-3px);
}

.page-resources-mcw-cockfighting-betting-rules-tips .btn-tertiary {
    background-color: var(--mcw-primary-red);
    color: #fff;
    border: 2px solid var(--mcw-primary-red);
    margin-left: 20px;
}

.page-resources-mcw-cockfighting-betting-rules-tips .btn-tertiary:hover {
    background-color: #a00000; /* Darker red */
    transform: translateY(-3px);
}

/* Section Styling */
.page-resources-mcw-cockfighting-betting-rules-tips section {
    padding: 60px 0;
    border-bottom: 1px solid var(--mcw-border-color);
}

.page-resources-mcw-cockfighting-betting-rules-tips section:last-of-type {
    border-bottom: none;
}

.page-resources-mcw-cockfighting-betting-rules-tips h2 {
    font-size: 2.5em;
    color: var(--mcw-secondary-gold);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-mcw-cockfighting-betting-rules-tips h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--mcw-primary-red);
    border-radius: 2px;
}

.page-resources-mcw-cockfighting-betting-rules-tips h3 {
    font-size: 1.8em;
    color: var(--mcw-primary-red);
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid var(--mcw-secondary-gold);
    padding-left: 15px;
}

.page-resources-mcw-cockfighting-betting-rules-tips p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--mcw-text-light);
}

.page-resources-mcw-cockfighting-betting-rules-tips ul,
.page-resources-mcw-cockfighting-betting-rules-tips ol {
    margin-bottom: 20px;
    padding-left: 25px;
    color: var(--mcw-text-light);
}

.page-resources-mcw-cockfighting-betting-rules-tips ul li,
.page-resources-mcw-cockfighting-betting-rules-tips ol li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-mcw-cockfighting-betting-rules-tips ul li strong,
.page-resources-mcw-cockfighting-betting-rules-tips ol li strong {
    color: var(--mcw-secondary-gold);
}

/* Image Wrapper */
.page-resources-mcw-cockfighting-betting-rules-tips .image-wrapper {
    margin: 40px 0;
    text-align: center;
}

.page-resources-mcw-cockfighting-betting-rules-tips .responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.page-resources-mcw-cockfighting-betting-rules-tips .responsive-image:hover {
    transform: scale(1.02);
}

/* CTA Section specific styling */
.page-resources-mcw-cockfighting-betting-rules-tips .cta-section {
    text-align: center;
    background-color: #222; /* Slightly different dark background */
    padding: 80px 0;
}

.page-resources-mcw-cockfighting-betting-rules-tips .cta-section h2 {
    color: var(--mcw-secondary-gold);
}

.page-resources-mcw-cockfighting-betting-rules-tips .cta-section p {
    font-size: 1.2em;
    margin-bottom: 50px;
}

.page-resources-mcw-cockfighting-betting-rules-tips .cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    gap: 20px; /* Space between buttons */
}

/* For JS animation */
.page-resources-mcw-cockfighting-betting-rules-tips .hidden-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-resources-mcw-cockfighting-betting-rules-tips .fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-mcw-cockfighting-betting-rules-tips .hero-section h1 {
        font-size: 2.5em;
    }

    .page-resources-mcw-cockfighting-betting-rules-tips .hero-section p {
        font-size: 1.1em;
    }

    .page-resources-mcw-cockfighting-betting-rules-tips h2 {
        font-size: 2em;
    }

    .page-resources-mcw-cockfighting-betting-rules-tips h3 {
        font-size: 1.5em;
    }

    .page-resources-mcw-cockfighting-betting-rules-tips .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-mcw-cockfighting-betting-rules-tips .btn-secondary,
    .page-resources-mcw-cockfighting-betting-rules-tips .btn-tertiary {
        margin-left: 0; /* Remove margin for stacking */
        margin-top: 15px; /* Add top margin for spacing */
    }

    .page-resources-mcw-cockfighting-betting-rules-tips .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-resources-mcw-cockfighting-betting-rules-tips .hero-section h1 {
        font-size: 2em;
    }

    .page-resources-mcw-cockfighting-betting-rules-tips h2 {
        font-size: 1.8em;
    }

    .page-resources-mcw-cockfighting-betting-rules-tips h3 {
        font-size: 1.3em;
    }

    .page-resources-mcw-cockfighting-betting-rules-tips .container {
        padding: 0 15px;
    }
}