﻿/* Bet Page Specific Styles - Dynamic Sports Design */

/* Hero Section - Sports Theme */
.hero-section {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.15), rgba(13, 40, 24, 0.6));
    border: 2px solid #32CD32;
    border-radius: 18px;
    padding: 48px;
    margin: 40px 0;
    box-shadow: 0 8px 35px rgba(50, 205, 50, 0.2);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(50, 205, 50, 0.03) 10px, rgba(50, 205, 50, 0.03) 20px);
    border-radius: 18px;
    pointer-events: none;
}

/* Hero Title - Bold Sports Style */
.hero-title {
    text-align: center;
    color: #32CD32;
    font-size: 2.6em;
    font-weight: 900;
    margin: 0 0 28px 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6), 0 0 15px rgba(50, 205, 50, 0.3);
    letter-spacing: -0.4px;
    position: relative;
    z-index: 1;
}

/* Promo Text - Sports Card */
.promo-text {
    background: rgba(13, 40, 24, 0.75);
    border: 2px solid rgba(50, 205, 50, 0.4);
    color: #f5f5f5;
    font-size: 1.06em;
    padding: 26px 30px;
    margin: 0 0 32px 0;
    line-height: 1.82;
    text-align: left;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.promo-banner-image {
    width: 100%;
    max-width: 880px;
    height: auto;
    border-radius: 16px;
    margin: 28px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
    border: 3px solid rgba(50, 205, 50, 0.5);
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.hero-cta .btn {
    font-size: 1.18em;
    padding: 18px 42px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.hero-cta .btn:hover {
    transform: translateY(-2px) scale(1.03);
}

/* Content Sections - Sports Card Design */
.content-section {
    margin: 72px 0;
}

.content-block {
    background: rgba(13, 40, 24, 0.7);
    border: 2px solid rgba(50, 205, 50, 0.35);
    border-radius: 16px;
    padding: 46px;
    margin-bottom: 52px;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    gap: 48px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
    position: relative;
}

.content-block::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(50, 205, 50, 0.3), rgba(255, 215, 0, 0.2));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.content-block:hover::before {
    opacity: 1;
}

.content-block:hover {
    border-color: #32CD32;
    box-shadow: 0 12px 40px rgba(50, 205, 50, 0.3);
    transform: translateY(-4px);
    background: rgba(13, 40, 24, 0.85);
}

.content-block-left {
    flex-direction: row;
}

.content-block-right {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    min-width: 0;
}

.content-text h2 {
    color: #32CD32;
    font-size: 1.95em;
    margin-bottom: 26px;
    font-weight: 800;
    line-height: 1.32;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-text p {
    color: #e6e6e6;
    font-size: 1.06em;
    line-height: 1.88;
    margin-bottom: 30px;
}

.content-text .btn {
    margin-top: 26px;
    padding: 15px 34px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.content-text .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
}

.content-image-wrapper {
    flex-shrink: 0;
    width: 370px;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 14px;
    border: 2px solid rgba(50, 205, 50, 0.5);
    display: block;
    transition: all 0.35s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.content-image:hover {
    transform: scale(1.06);
    border-color: #32CD32;
    box-shadow: 0 12px 35px rgba(50, 205, 50, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        border-radius: 0;
        margin: 20px 0;
        padding: 36px 20px;
    }
    
    .hero-section::before {
        display: none;
    }
    
    .hero-title {
        font-size: 1.95em;
        margin-bottom: 22px;
    }
    
    .promo-text {
        padding: 22px;
        font-size: 1em;
    }
    
    .content-block {
        flex-direction: column !important;
        padding: 30px 20px;
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
        gap: 30px;
    }
    
    .content-block::before {
        display: none;
    }
    
    .content-block-left,
    .content-block-right {
        flex-direction: column !important;
    }
    
    .content-image-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .content-image {
        width: 100%;
    }
    
    .content-text {
        width: 100%;
    }
    
    .content-text h2 {
        font-size: 1.65em;
    }
    
    .hero-cta {
        gap: 16px;
    }
    
    .hero-cta .btn {
        font-size: 1.05em;
        padding: 15px 30px;
    }
}
