/* style/games-cockfighting-game.css */

:root {
    --hay88-primary: #007bff;
    --hay88-secondary: #ffc107;
    --hay88-dark: #002752;
    --hay88-light: #f8f9fa;
    --hay88-text-dark: #212529;
    --hay88-text-light: #ffffff;
    --hay88-accent: #dc3545;
}

.page-games-cockfighting-game {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--hay88-text-dark);
    background-color: var(--hay88-light);
}

.page-games-cockfighting-game__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-games-cockfighting-game__hero {
    background: linear-gradient(135deg, var(--hay88-primary) 0%, var(--hay88-dark) 100%);
    color: var(--hay88-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-cockfighting-game__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-games-cockfighting-game__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transform: rotate(-30deg);
}

.page-games-cockfighting-game__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--hay88-secondary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-games-cockfighting-game__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.page-games-cockfighting-game__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-games-cockfighting-game__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-games-cockfighting-game__button--primary {
    background-color: var(--hay88-secondary);
    color: var(--hay88-dark);
    border: 2px solid var(--hay88-secondary);
}

.page-games-cockfighting-game__button--primary:hover {
    background-color: #e6b000; /* Darker secondary */
    border-color: #e6b000;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-games-cockfighting-game__button--secondary {
    background-color: transparent;
    color: var(--hay88-secondary);
    border: 2px solid var(--hay88-secondary);
}

.page-games-cockfighting-game__button--secondary:hover {
    background-color: var(--hay88-secondary);
    color: var(--hay88-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-games-cockfighting-game__section {
    padding: 60px 0;
    background-color: var(--hay88-light);
}

.page-games-cockfighting-game__section:nth-of-type(even) {
    background-color: #e9ecef; /* Slightly darker light background for contrast */
}

.page-games-cockfighting-game__section-title {
    font-size: 2.5em;
    color: var(--hay88-primary);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-games-cockfighting-game__section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--hay88-secondary);
    border-radius: 2px;
}

.page-games-cockfighting-game__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-games-cockfighting-game__content-grid:nth-child(even) {
    flex-direction: row-reverse;
}

.page-games-cockfighting-game__text-content {
    flex: 1;
    font-size: 1.1em;
}

.page-games-cockfighting-game__text-content p {
    margin-bottom: 15px;
}

.page-games-cockfighting-game__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-games-cockfighting-game__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-games-cockfighting-game__image--small {
    max-width: 80%;
    margin: 0 auto;
}

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

.page-games-cockfighting-game__rule-item {
    background-color: var(--hay88-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-games-cockfighting-game__rule-item:hover {
    transform: translateY(-5px);
}

.page-games-cockfighting-game__rule-heading {
    font-size: 1.6em;
    color: var(--hay88-primary);
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.page-games-cockfighting-game__rule-heading::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--hay88-secondary);
    font-size: 1.2em;
    top: -2px;
}

.page-games-cockfighting-game__rule-item ul {
    list-style: none;
    padding-left: 0;
}

.page-games-cockfighting-game__rule-item ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.page-games-cockfighting-game__rule-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--hay88-secondary);
    font-weight: bold;
}

.page-games-cockfighting-game__tip {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-top: 40px;
    font-size: 0.95em;
}

.page-games-cockfighting-game__strategies {
    background-color: var(--hay88-light);
}

.page-games-cockfighting-game__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-games-cockfighting-game__strategy-item {
    background-color: var(--hay88-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.page-games-cockfighting-game__strategy-item:hover {
    transform: translateY(-5px);
}

.page-games-cockfighting-game__strategy-heading {
    font-size: 1.5em;
    color: var(--hay88-primary);
    margin-bottom: 15px;
}

.page-games-cockfighting-game__strategy-image {
    max-width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-games-cockfighting-game__conclusion-text {
    text-align: center;
    font-size: 1.2em;
    margin-top: 50px;
    font-weight: 500;
    color: var(--hay88-dark);
}

.page-games-cockfighting-game__why-hay88 {
    background-color: #e9ecef;
}

.page-games-cockfighting-game__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-games-cockfighting-game__feature-item {
    background-color: var(--hay88-text-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-cockfighting-game__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-games-cockfighting-game__feature-heading {
    font-size: 1.4em;
    color: var(--hay88-secondary);
    margin-bottom: 10px;
}

.page-games-cockfighting-game__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(90deg, var(--hay88-primary) 0%, #0056b3 100%);
    border-radius: 10px;
    color: var(--hay88-text-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.page-games-cockfighting-game__cta-text {
    font-size: 1.5em;
    margin-bottom: 25px;
    font-weight: 600;
}

.page-games-cockfighting-game__faq {
    background-color: var(--hay88-light);
}

.page-games-cockfighting-game__faq-item {
    background-color: var(--hay88-text-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-games-cockfighting-game__faq-question {
    font-size: 1.3em;
    color: var(--hay88-dark);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-games-cockfighting-game__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: var(--hay88-secondary);
    transition: transform 0.3s ease;
}

.page-games-cockfighting-game__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-games-cockfighting-game__faq-answer {
    font-size: 1.05em;
    color: #495057;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
    padding-bottom: 0;
}

.page-games-cockfighting-game__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
    padding-bottom: 10px;
}

.page-games-cockfighting-game__final-cta {
    background: linear-gradient(135deg, var(--hay88-secondary) 0%, #e6b000 100%);
    color: var(--hay88-dark);
    text-align: center;
    padding: 80px 0;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-games-cockfighting-game__cta-text-large {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--hay88-dark);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-games-cockfighting-game__button--hero {
    padding: 18px 40px;
    font-size: 1.3em;
    background-color: var(--hay88-primary);
    color: var(--hay88-text-light);
    border: 2px solid var(--hay88-primary);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-games-cockfighting-game__button--hero:hover {
    background-color: #0056b3; /* Darker primary */
    border-color: #0056b3;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-games-cockfighting-game__cta-small-text {
    margin-top: 25px;
    font-size: 1.1em;
    font-style: italic;
    color: rgba(0, 0, 0, 0.7);
}

.page-games-cockfighting-game .highlight {
    color: var(--hay88-primary);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-games-cockfighting-game__title {
        font-size: 2.5em;
    }
    .page-games-cockfighting-game__subtitle {
        font-size: 1.1em;
    }
    .page-games-cockfighting-game__section-title {
        font-size: 2em;
    }
    .page-games-cockfighting-game__content-grid {
        flex-direction: column;
        text-align: center;
    }
    .page-games-cockfighting-game__content-grid:nth-child(even) {
        flex-direction: column;
    }
    .page-games-cockfighting-game__image-wrapper {
        order: -1; /* Image above text on small screens */
        margin-bottom: 20px;
    }
    .page-games-cockfighting-game__image--small {
        max-width: 100%;
    }
    .page-games-cockfighting-game__cta-text-large {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-games-cockfighting-game__hero {
        padding: 80px 0;
    }
    .page-games-cockfighting-game__title {
        font-size: 2em;
    }
    .page-games-cockfighting-game__subtitle {
        font-size: 1em;
    }
    .page-games-cockfighting-game__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-games-cockfighting-game__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-games-cockfighting-game__section {
        padding: 40px 0;
    }
    .page-games-cockfighting-game__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-games-cockfighting-game__rule-item, .page-games-cockfighting-game__strategy-item, .page-games-cockfighting-game__feature-item {
        padding: 20px;
    }
    .page-games-cockfighting-game__rule-heading, .page-games-cockfighting-game__strategy-heading, .page-games-cockfighting-game__feature-heading {
        font-size: 1.3em;
    }
    .page-games-cockfighting-game__cta-bottom {
        padding: 30px;
    }
    .page-games-cockfighting-game__cta-text {
        font-size: 1.3em;
    }
    .page-games-cockfighting-game__cta-text-large {
        font-size: 1.8em;
    }
    .page-games-cockfighting-game__button--hero {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-games-cockfighting-game__hero {
        padding: 60px 0;
    }
    .page-games-cockfighting-game__title {
        font-size: 1.6em;
    }
    .page-games-cockfighting-game__subtitle {
        font-size: 0.9em;
    }
    .page-games-cockfighting-game__button {
        width: 100%;
    }
    .page-games-cockfighting-game__section-title {
        font-size: 1.5em;
    }
    .page-games-cockfighting-game__cta-text-large {
        font-size: 1.5em;
    }
}