/* style/sports-betting-project-list.css */

.page-sports-betting-project-list {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-sports-betting-project-list .highlight {
    color: #B22222;
    font-weight: bold;
}

.page-sports-betting-project-list__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-sports-betting-project-list__hero {
    background: linear-gradient(135deg, #B22222 0%, #FFD700 100%);
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.page-sports-betting-project-list__hero-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-sports-betting-project-list__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-sports-betting-project-list__subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #eee;
}

.page-sports-betting-project-list__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-sports-betting-project-list__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
}

.page-sports-betting-project-list__btn--primary {
    background-color: #B22222;
    color: #fff;
    border: 2px solid #B22222;
}

.page-sports-betting-project-list__btn--primary:hover {
    background-color: #901c1c;
    border-color: #901c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-sports-betting-project-list__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.page-sports-betting-project-list__btn--secondary:hover {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-sports-betting-project-list__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-sports-betting-project-list__btn--large {
    padding: 18px 35px;
    font-size: 1.25em;
}

.page-sports-betting-project-list__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-sports-betting-project-list__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.page-sports-betting-project-list__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-sports-betting-project-list__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-sports-betting-project-list__section-title {
    font-size: 2.5em;
    color: #B22222;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-sports-betting-project-list__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-sports-betting-project-list__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-sports-betting-project-list__features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-sports-betting-project-list__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports-betting-project-list__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-sports-betting-project-list__feature-item h3 {
    color: #B22222;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-sports-betting-project-list__feature-item p {
    color: #666;
}

.page-sports-betting-project-list__sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-sports-betting-project-list__sport-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports-betting-project-list__sport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-sports-betting-project-list__sport-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-sports-betting-project-list__sport-card h3 {
    color: #B22222;
    font-size: 1.6em;
    margin: 20px 0 10px;
}

.page-sports-betting-project-list__sport-card p {
    color: #666;
    padding: 0 20px 20px;
    font-size: 0.95em;
}

.page-sports-betting-project-list__sport-card .page-sports-betting-project-list__btn--small {
    margin-bottom: 20px;
}

.page-sports-betting-project-list__section--cockfighting .page-sports-betting-project-list__content-with-image {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-sports-betting-project-list__section--cockfighting .page-sports-betting-project-list__text-content {
    flex: 2;
    min-width: 300px;
}

.page-sports-betting-project-list__section--cockfighting .page-sports-betting-project-list__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-sports-betting-project-list__section--cockfighting .page-sports-betting-project-list__image-right {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-sports-betting-project-list__section--how-to-start .page-sports-betting-project-list__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-sports-betting-project-list__step-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports-betting-project-list__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-sports-betting-project-list__step-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-sports-betting-project-list__step-card h3 {
    color: #B22222;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-sports-betting-project-list__step-card p {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.page-sports-betting-project-list__section--promotions {
    background-color: #f0f0f0;
}

.page-sports-betting-project-list__promo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-sports-betting-project-list__promo-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports-betting-project-list__promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-sports-betting-project-list__promo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-sports-betting-project-list__promo-item h3 {
    color: #B22222;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-sports-betting-project-list__promo-item p {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-sports-betting-project-list__section--responsible-gambling {
    background-color: #333;
    color: #fff;
    text-align: center;
}

.page-sports-betting-project-list__section--responsible-gambling .page-sports-betting-project-list__section-title {
    color: #FFD700;
}

.page-sports-betting-project-list__section--responsible-gambling .page-sports-betting-project-list__section-description,
.page-sports-betting-project-list__section--responsible-gambling p {
    color: #ccc;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports-betting-project-list__section--responsible-gambling .page-sports-betting-project-list__btn--secondary {
    border-color: #FFD700;
    color: #FFD700;
}

.page-sports-betting-project-list__section--responsible-gambling .page-sports-betting-project-list__btn--secondary:hover {
    background-color: rgba(255,215,0,0.2);
}

.page-sports-betting-project-list__section--faq {
    background-color: #fff;
}

.page-sports-betting-project-list__faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.page-sports-betting-project-list__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-sports-betting-project-list__faq-item h3 {
    color: #B22222;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-sports-betting-project-list__faq-item p {
    color: #555;
    font-size: 1em;
}

.page-sports-betting-project-list__cta-banner {
    background: linear-gradient(to right, #B22222, #FFD700);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.page-sports-betting-project-list__cta-content {
    max-width: 900px;
}

.page-sports-betting-project-list__cta-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.page-sports-betting-project-list__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #eee;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-sports-betting-project-list__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-sports-betting-project-list__hero-image-wrapper {
        order: -1;
        margin-bottom: 40px;
    }

    .page-sports-betting-project-list__main-title {
        font-size: 2.5em;
    }

    .page-sports-betting-project-list__subtitle {
        font-size: 1.2em;
    }

    .page-sports-betting-project-list__section-title {
        font-size: 2em;
    }

    .page-sports-betting-project-list__section--cockfighting .page-sports-betting-project-list__content-with-image {
        flex-direction: column;
    }

    .page-sports-betting-project-list__section--cockfighting .page-sports-betting-project-list__image-wrapper {
        order: -1;
        margin-bottom: 30px;
    }

    .page-sports-betting-project-list__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-sports-betting-project-list__hero {
        padding: 60px 0;
    }

    .page-sports-betting-project-list__main-title {
        font-size: 2em;
    }

    .page-sports-betting-project-list__subtitle {
        font-size: 1em;
    }

    .page-sports-betting-project-list__hero-actions {
        flex-direction: column;
    }

    .page-sports-betting-project-list__btn {
        width: 80%;
        max-width: 300px;
    }

    .page-sports-betting-project-list__section {
        padding: 40px 0;
    }

    .page-sports-betting-project-list__section-title {
        font-size: 1.8em;
    }

    .page-sports-betting-project-list__section-description {
        font-size: 0.95em;
    }

    .page-sports-betting-project-list__cta-title {
        font-size: 1.8em;
    }

    .page-sports-betting-project-list__cta-description {
        font-size: 1em;
    }

    .page-sports-betting-project-list__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-sports-betting-project-list__hero {
        padding: 40px 0;
    }

    .page-sports-betting-project-list__main-title {
        font-size: 1.7em;
    }

    .page-sports-betting-project-list__subtitle {
        font-size: 0.9em;
    }

    .page-sports-betting-project-list__section-title {
        font-size: 1.5em;
    }

    .page-sports-betting-project-list__feature-item,
    .page-sports-betting-project-list__sport-card,
    .page-sports-betting-project-list__step-card,
    .page-sports-betting-project-list__promo-item {
        padding: 20px;
    }

    .page-sports-betting-project-list__feature-item h3,
    .page-sports-betting-project-list__sport-card h3,
    .page-sports-betting-project-list__step-card h3,
    .page-sports-betting-project-list__promo-item h3 {
        font-size: 1.2em;
    }

    .page-sports-betting-project-list__cta-title {
        font-size: 1.6em;
    }
    .page-sports-betting-project-list__cta-description {
        font-size: 0.9em;
    }
    .page-sports-betting-project-list__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
}