:root {
    --page-cockfighting-live-primary-bg: #1A202C;
    --page-cockfighting-live-secondary-bg: #2D3748;
    --page-cockfighting-live-accent-color: #FFD700;
    --page-cockfighting-live-text-color-light: #F7FAFC;
    --page-cockfighting-live-text-color-dark: #1A202C;
    --page-cockfighting-live-link-color: #FFD700;
    --page-cockfighting-live-border-color: #4A5568;
}

.page-cockfighting-live {
    font-family: 'Arial', sans-serif;
    color: var(--page-cockfighting-live-text-color-light);
    background-color: var(--page-cockfighting-live-primary-bg);
    line-height: 1.6;
}

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

.page-cockfighting-live__section {
    padding: 60px 0;
    text-align: center;
}

.page-cockfighting-live__section:nth-of-type(even) {
    background-color: var(--page-cockfighting-live-secondary-bg);
}

.page-cockfighting-live__section-title {
    font-size: 2.5em;
    color: var(--page-cockfighting-live-accent-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-cockfighting-live__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-cockfighting-live-accent-color);
    border-radius: 2px;
}

.page-cockfighting-live__hero {
    background: linear-gradient(135deg, var(--page-cockfighting-live-primary-bg) 0%, #3a475a 100%);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
    flex-wrap: wrap;
}

.page-cockfighting-live__hero-content {
    max-width: 600px;
    flex: 1 1 50%;
    min-width: 300px;
}

.page-cockfighting-live__hero-title {
    font-size: 3.8em;
    color: var(--page-cockfighting-live-accent-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-cockfighting-live__hero-description {
    font-size: 1.3em;
    color: var(--page-cockfighting-live-text-color-light);
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-cockfighting-live__hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-cockfighting-live__hero-image-wrapper {
    flex: 1 1 40%;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-cockfighting-live__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-live__btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-cockfighting-live__btn--primary {
    background-color: var(--page-cockfighting-live-accent-color);
    color: var(--page-cockfighting-live-text-color-dark);
    border: 2px solid var(--page-cockfighting-live-accent-color);
}

.page-cockfighting-live__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-cockfighting-live__btn--secondary {
    background-color: transparent;
    color: var(--page-cockfighting-live-accent-color);
    border: 2px solid var(--page-cockfighting-live-accent-color);
}

.page-cockfighting-live__btn--secondary:hover {
    background-color: var(--page-cockfighting-live-accent-color);
    color: var(--page-cockfighting-live-text-color-dark);
    transform: translateY(-3px);
}

.page-cockfighting-live__btn--gold {
    background-color: var(--page-cockfighting-live-accent-color);
    color: var(--page-cockfighting-live-text-color-dark);
    border: none;
    padding: 12px 25px;
    font-size: 1.05em;
}

.page-cockfighting-live__btn--gold:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-cockfighting-live__btn--details {
    background-color: var(--page-cockfighting-live-primary-bg);
    color: var(--page-cockfighting-live-accent-color);
    border: 1px solid var(--page-cockfighting-live-accent-color);
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-cockfighting-live__btn--details:hover {
    background-color: var(--page-cockfighting-live-accent-color);
    color: var(--page-cockfighting-live-text-color-dark);
    transform: translateY(-2px);
}

.page-cockfighting-live__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-cockfighting-live__btn--extra-large {
    padding: 20px 40px;
    font-size: 1.3em;
    margin-top: 30px;
}

.page-cockfighting-live__introduction p {
    max-width: 900px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
    color: var(--page-cockfighting-live-text-color-light);
    opacity: 0.85;
}

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

.page-cockfighting-live__feature-item {
    background-color: var(--page-cockfighting-live-primary-bg);
    padding: 30px;
    border-radius: 10px;
    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 var(--page-cockfighting-live-border-color);
}

.page-cockfighting-live__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-live__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2) drop-shadow(0 0 5px var(--page-cockfighting-live-accent-color));
}

.page-cockfighting-live__feature-title {
    font-size: 1.5em;
    color: var(--page-cockfighting-live-accent-color);
    margin-bottom: 15px;
}

.page-cockfighting-live__feature-item p {
    font-size: 1em;
    color: var(--page-cockfighting-live-text-color-light);
    opacity: 0.8;
}

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

.page-cockfighting-live__step-item {
    background-color: var(--page-cockfighting-live-primary-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid var(--page-cockfighting-live-border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-cockfighting-live__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--page-cockfighting-live-accent-color);
    margin-bottom: 15px;
    display: block;
}

.page-cockfighting-live__step-title {
    font-size: 1.4em;
    color: var(--page-cockfighting-live-accent-color);
    margin-bottom: 15px;
}

.page-cockfighting-live__step-item p {
    font-size: 1em;
    color: var(--page-cockfighting-live-text-color-light);
    opacity: 0.8;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-cockfighting-live__betting-options p {
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
    color: var(--page-cockfighting-live-text-color-light);
    opacity: 0.85;
}

.page-cockfighting-live__list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-cockfighting-live__list li {
    background-color: var(--page-cockfighting-live-secondary-bg);
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid var(--page-cockfighting-live-accent-color);
    border-radius: 5px;
    font-size: 1.05em;
    color: var(--page-cockfighting-live-text-color-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live__list li strong {
    color: var(--page-cockfighting-live-accent-color);
}

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

.page-cockfighting-live__detail-item {
    background-color: var(--page-cockfighting-live-secondary-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    border: 1px solid var(--page-cockfighting-live-border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-cockfighting-live__detail-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-cockfighting-live__detail-title a {
    color: var(--page-cockfighting-live-accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-cockfighting-live__detail-title a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-cockfighting-live__detail-description {
    font-size: 0.95em;
    color: var(--page-cockfighting-live-text-color-light);
    opacity: 0.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-cockfighting-live__app-download {
    background-color: var(--page-cockfighting-live-primary-bg);
    padding: 80px 0;
}

.page-cockfighting-live__app-download-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
}

.page-cockfighting-live__app-info {
    flex: 1 1 50%;
    min-width: 300px;
}

.page-cockfighting-live__app-info .page-cockfighting-live__section-title {
    text-align: left;
}

.page-cockfighting-live__app-info .page-cockfighting-live__section-title::after {
    left: 0;
    transform: translateX(0);
}

.page-cockfighting-live__app-info p {
    font-size: 1.1em;
    color: var(--page-cockfighting-live-text-color-light);
    opacity: 0.85;
    margin-bottom: 30px;
}

.page-cockfighting-live__app-image-wrapper {
    flex: 1 1 40%;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-cockfighting-live__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-live__cta-final {
    background-color: var(--page-cockfighting-live-secondary-bg);
    padding: 80px 0;
}

.page-cockfighting-live__cta-final p {
    max-width: 900px;
    margin: 0 auto 30px auto;
    font-size: 1.2em;
    color: var(--page-cockfighting-live-text-color-light);
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-cockfighting-live__hero {
        padding: 80px 20px;
        flex-direction: column;
        text-align: center;
    }

    .page-cockfighting-live__hero-content,
    .page-cockfighting-live__hero-image-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .page-cockfighting-live__hero-title {
        font-size: 3em;
    }

    .page-cockfighting-live__hero-description {
        font-size: 1.1em;
    }

    .page-cockfighting-live__hero-cta {
        justify-content: center;
    }

    .page-cockfighting-live__section-title {
        font-size: 2em;
    }

    .page-cockfighting-live__app-download-content {
        flex-direction: column;
        text-align: center;
    }

    .page-cockfighting-live__app-info .page-cockfighting-live__section-title {
        text-align: center;
    }

    .page-cockfighting-live__app-info .page-cockfighting-live__section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .page-cockfighting-live__app-info p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-live__hero-title {
        font-size: 2.5em;
    }

    .page-cockfighting-live__hero-description {
        font-size: 1em;
    }

    .page-cockfighting-live__section-title {
        font-size: 1.8em;
    }

    .page-cockfighting-live__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-cockfighting-live__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-cockfighting-live__btn--extra-large {
        padding: 18px 35px;
        font-size: 1.2em;
    }

    .page-cockfighting-live__features-grid,
    .page-cockfighting-live__steps-grid,
    .page-cockfighting-live__detail-list {
        grid-template-columns: 1fr;
    }

    .page-cockfighting-live__list li {
        padding: 15px;
        font-size: 0.95em;
    }
}