/* Betting Sites Section */
.betting-sites-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
    background: linear-gradient(to bottom, #002622 0%, #000F0E 100%);
}

/* Betting Cards */
.betting-card-container {
    width: 100%;
    max-width: 1300px;
    margin-bottom: 16px;
    display: none;
}

/* Show desktop cards on large screens */
@media (min-width: 1024px) {
    .betting-card-container {
        display: block;
    }
}

/* Mobile Betting Cards */
.betting-card-mobile-container {
    width: 100%;
    max-width: 384px;
    margin: 0 auto;
    margin-bottom: 24px;
    display: block;
}

/* Hide mobile cards on large screens */
@media (min-width: 1024px) {
    .betting-card-mobile-container {
        display: none;
    }
}

.betting-card {
    position: relative;
    background-color: #193330;
    border-radius: 16px;
    overflow: visible;
    transition: all 0.3s ease;
    gap: 80px;
    margin-left: 24px;
    font-family: 'Barlow Condensed', sans-serif;
}

.card-rank {
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(to right, #001815, #001815);
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-right: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
    height: 128px;
    background-color: #193330;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.card-left {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

.exclusive-badge {
    position: absolute;
    top: -24px;
    left: 0;
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    color: black;
    font-size: 10px;
    font-weight: 700;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
    z-index: 30;
    max-width: 128px;
}

.logo-section {
    width: 192px;
    height: 112px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    overflow: hidden;
}

.betting-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-divider {
    width: 1px;
    height: 48px;
    background-color: rgba(148, 163, 184, 0.3);
}

.bonus-info {
    display: flex;
    flex-direction: column;
}

.bonus-title {
    color: rgb(203, 213, 225);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.bonus-main {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
}

.bonus-percentage, .bonus-amount {
    color: #fbbf24;
}

.bonus-text {
    color: white;
}

.bonus-extra {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.card-center {
    display: flex;
    height: 78px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sports-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
}

.betting-card:hover .sports-label {
    color: white;
}

.sports-icons {
    display: flex;
    justify-content: center;
    width: 48px;
    transition: transform 0.3s ease;
}

.betting-card:hover .sports-icons {
    transform: scale(1.1);
}

.card-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-label {
    color: rgb(203, 213, 225);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    margin-top: 12px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

.rating-value {
    display: flex;
    align-items: flex-end;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 5px;
}

.rating-main {
    color: white;
    font-size: 36px;
    font-weight: 700;
}

.rating-sub {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.card-button {
    position: relative;
}

.visit-button {
    position: relative;
    background-color: #FFB713;
    color: black;
    font-weight: 700;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 32px;
    padding-right: 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.visit-button:hover .button-hover-effect {
    left: 100%;
}

.visit-button:hover {
    background-color: #e6a712;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 183, 19, 0.3);
}

/* Mobile Card Styles */
.betting-card-mobile {
    position: relative;
    background-color: #193330;
    border-radius: 16px;
    padding: 20px;
    padding-top: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    font-family: 'Barlow Condensed', sans-serif;
}

.exclusive-badge-mobile {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    color: black;
    font-size: 8px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 0 0 4px 4px;
    display: flex;
    align-items: center;
    gap: 2px;
    z-index: 10;
}

.logo-section-mobile {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    position: relative;
}

.rank-mobile {
    position: absolute;
    left: -8px;
    top: 24px;
    width: 32px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.logo-container-mobile {
    width: 160px;
    height: 96px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    overflow: hidden;
}

.logo-mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.separator-mobile {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 12px 0 16px 0;
}

.bonus-section-mobile {
    text-align: center;
    margin-bottom: 20px;
}

.bonus-title-mobile {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bonus-main-mobile {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.bonus-percentage-mobile {
    color: #fbbf24;
    font-size: 24px;
    font-weight: 700;
}

.bonus-amount-mobile {
    color: #fbbf24;
    font-size: 24px;
    font-weight: 700;
}

.bonus-text-mobile {
    color: #fbbf24;
    font-size: 18px;
    font-weight: 700;
}

.bonus-extra-mobile {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.sports-rating-section-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    gap: 2px;
}

.headers-row-mobile {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.header-label-mobile {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    width: 80px;
}

.content-row-mobile {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 32px;
}

.sports-container-mobile {
    display: flex;
    justify-content: center;
    width: 80px;
}

.sports-icons-mobile {
    display: flex;
    gap: 4px;
    transform: scale(0.75);
}

.rating-container-mobile {
    display: flex;
    align-items: baseline;
    justify-content: center;
    width: 80px;
}

.rating-main-mobile {
    color: #D1D6D6;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.rating-sub-mobile {
    color: #D1D6D6;
    font-size: 16px;
    font-weight: 500;
    margin-left: 2px;
}

.button-mobile {
    position: relative;
    width: 100%;
    background-color: #FFB713;
    color: black;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
    display: block;
    text-decoration: none;
    text-align: center;
}

.button-mobile:active {
    transform: scale(0.95);
}

.button-text-container-mobile {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button-main-text-mobile {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.button-sub-text-mobile {
    font-size: 12px;
    margin-top: 4px;
    opacity: 0.8;
}

.button-hover-effect-mobile {
    position: absolute;
    top: -32px;
    left: -32px;
    right: -32px;
    bottom: -32px;
    background-color: #EBA300;
    transform: rotate(12deg) translateX(100%);
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.button-mobile:hover .button-hover-effect-mobile {
    transform: rotate(12deg) translateX(50%);
}