:root {
    --primary-color: #017439; /* Green */
    --secondary-color: #FFFFFF; /* White */
    --accent-color: #C30808; /* Red for Register/Login buttons */
    --accent-text-color: #FFFF00; /* Yellow for Register/Login button text */
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --border-color: #e0e0e0;
    --background-light-gray: #f9f9f9;
}

/* General page styles */
.page-cockfighting-live-betting {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark); /* Default text color for light body background */
    background: var(--secondary-color); /* Body background is white */
}

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

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

.page-cockfighting-live-betting__section:nth-of-type(even) {
    background-color: var(--background-light-gray);
}

.page-cockfighting-live-betting__section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-cockfighting-live-betting__section-description,
.page-cockfighting-live-betting__section-footer {
    font-size: 18px;
    color: var(--text-color-dark);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-cockfighting-live-betting__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a9f6a 100%); /* Green gradient */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-cockfighting-live-betting__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.page-cockfighting-live-betting__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-cockfighting-live-betting__hero-image img {
    width: 1200px; /* Display width */
    height: 675px; /* Display height */
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-live-betting__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--text-color-light);
}

.page-cockfighting-live-betting__hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-color-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-live-betting__hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-live-betting__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-cockfighting-live-betting__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    text-align: center;
}

.page-cockfighting-live-betting__btn-register {
    background: var(--accent-color); /* Red */
    color: var(--accent-text-color); /* Yellow */
    border: 2px solid var(--accent-text-color);
}

.page-cockfighting-live-betting__btn-register:hover {
    background: #e00b0b; /* Slightly darker red */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-live-betting__btn-login {
    background: var(--accent-color); /* Red */
    color: var(--accent-text-color); /* Yellow */
    border: 2px solid var(--accent-text-color);
}

.page-cockfighting-live-betting__btn-login:hover {
    background: #e00b0b; /* Slightly darker red */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* General buttons */
.page-cockfighting-live-betting__btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--text-color-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.page-cockfighting-live-betting__btn-primary:hover {
    background: #005a2e; /* Darker green */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live-betting__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.page-cockfighting-live-betting__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-color-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

/* Content Grid */
.page-cockfighting-live-betting__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

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

.page-cockfighting-live-betting__text-block {
    flex: 1;
}

.page-cockfighting-live-betting__text-block p {
    margin-bottom: 15px;
    font-size: 17px;
    color: var(--text-color-dark);
}

.page-cockfighting-live-betting__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-cockfighting-live-betting__image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Min size for content images */
    min-height: 200px; /* Min size for content images */
}

/* Cards Grid */
.page-cockfighting-live-betting__cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}