/* style/games-cockfighting-rules-tips.css */

/* Base Styles for the specific page */
.page-games-cockfighting-rules-tips {
    font-family: 'Arial', sans-serif;
    color: #F5F5DC; /* Light background for text */
    background-color: #0A2239; /* Main background color */
    line-height: 1.6;
}

.page-games-cockfighting-rules-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-games-cockfighting-rules-tips__hero {
    background: linear-gradient(135deg, #0A2239 0%, #3a5e8c 100%); /* Dark blue to slightly lighter blue for depth */
    padding: 80px 0;
    text-align: center;
    color: #FFD700; /* Gold for main title */
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #FFD700;
}

.page-games-cockfighting-rules-tips__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(10, 34, 57, 0) 70%);
    animation: page-games-cockfighting-rules-tips__pulse 15s infinite alternate;
}

@keyframes page-games-cockfighting-rules-tips__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.7; }
}

.page-games-cockfighting-rules-tips__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-games-cockfighting-rules-tips__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #F5F5DC; /* Light text for readability */
    position: relative;
    z-index: 1;
}

/* Section Styling */
.page-games-cockfighting-rules-tips__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-games-cockfighting-rules-tips__section:last-of-type {
    border-bottom: none;
}

.page-games-cockfighting-rules-tips__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-games-cockfighting-rules-tips__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-games-cockfighting-rules-tips__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-games-cockfighting-rules-tips__text {
    font-size: 1.1em;
    color: #F5F5DC; /* Light text for readability */
    margin-bottom: 20px;
}

.page-games-cockfighting-rules-tips__text strong {
    color: #FFD700;
}

/* Grid for cards */
.page-games-cockfighting-rules-tips__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-games-cockfighting-rules-tips__card {
    background-color: #1A344A; /* Slightly lighter dark blue for cards */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-games-cockfighting-rules-tips__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-games-cockfighting-rules-tips__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-games-cockfighting-rules-tips__card-img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-games-cockfighting-rules-tips__card-text {
    color: #F5F5DC;
    font-size: 0.95em;
}

/* Lists */
.page-games-cockfighting-rules-tips__list {
    list-style: none;
    padding: 0;
    margin-left: 20px;
    color: #F5F5DC;
}

.page-games-cockfighting-rules-tips__list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-games-cockfighting-rules-tips__list li::before {
    content: '•';
    color: #FFD700;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.page-games-cockfighting-rules-tips__sub-list {
    list-style: none;
    padding: 0;
    margin-left: 20px;
    color: #F5F5DC;
}

.page-games-cockfighting-rules-tips__sub-list li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.page-games-cockfighting-rules-tips__sub-list li::before {
    content: '-';
    color: #FFD700;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.page-games-cockfighting-rules-tips__numbered-list {
    list-style: decimal;
    padding-left: 25px;
    color: #F5F5DC;
}

.page-games-cockfighting-rules-tips__numbered-list li {
    margin-bottom: 10px;
}

.page-games-cockfighting-rules-tips__numbered-list li strong {
    color: #FFD700;
}

/* Buttons */
.page-games-cockfighting-rules-tips__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-games-cockfighting-rules-tips__btn--primary {
    background-color: #FFD700;
    color: #0A2239;
    margin-top: 30px;
}

.page-games-cockfighting-rules-tips__btn--primary:hover {
    background-color: #FFC400;
    transform: translateY(-3px);
}

.page-games-cockfighting-rules-tips__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-top: 30px;
}

.page-games-cockfighting-rules-tips__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2239;
    transform: translateY(-3px);
}

.page-games-cockfighting-rules-tips__link-inline {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-games-cockfighting-rules-tips__link-inline:hover {
    color: #FFC400;
}

.page-games-cockfighting-rules-tips__img-full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-games-cockfighting-rules-tips__btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-games-cockfighting-rules-tips__hero-title {
        font-size: 2.5em;
    }

    .page-games-cockfighting-rules-tips__hero-subtitle {
        font-size: 1em;
    }

    .page-games-cockfighting-rules-tips__section-title {
        font-size: 2em;
    }

    .page-games-cockfighting-rules-tips__sub-title {
        font-size: 1.5em;
    }

    .page-games-cockfighting-rules-tips__grid {
        grid-template-columns: 1fr;
    }

    .page-games-cockfighting-rules-tips__btn-group {
        flex-direction: column;
        align-items: center;
    }

    .page-games-cockfighting-rules-tips__btn {
        width: 80%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-games-cockfighting-rules-tips__hero-title {
        font-size: 2em;
    }

    .page-games-cockfighting-rules-tips__section-title {
        font-size: 1.8em;
    }

    .page-games-cockfighting-rules-tips__sub-title {
        font-size: 1.3em;
    }

    .page-games-cockfighting-rules-tips__btn {
        font-size: 1em;
        padding: 10px 20px;
    }
}