/**
 * Homepage Styles - 首页专属样式
 * 避免污染全站样式
 */

/* ==========================================================================
   Statistics Counters
   ========================================================================== */
.stats-counters {
    margin: 30px 0;
}

.counter-box {
    transition: all 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Premium Tips Section
   ========================================================================== */
.premium-section {
    margin: 40px 0;
}

.premium-tips {
    background: rgba(12, 61, 84, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.premium-tips thead {
    background: linear-gradient(135deg, rgba(255, 210, 89, 0.2) 0%, rgba(255, 210, 89, 0.1) 100%);
    border-bottom: 2px solid var(--sct-primary);
}

.premium-tips thead th {
    padding: 15px 12px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--sct-primary);
}

.premium-tips tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.premium-tips tbody tr:hover {
    background: rgba(255, 210, 89, 0.08);
}

.premium-tips tbody tr.status-win {
    background: rgba(74, 222, 128, 0.08);
}

.premium-tips tbody tr.status-lose {
    background: rgba(248, 113, 113, 0.08);
}

.premium-tips td {
    padding: 15px 12px;
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    color: var(--sct-text-primary);
}

/* ==========================================================================
   Series Tips Section
   ========================================================================== */
.series-section {
    margin: 40px 0;
}

.series-info-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.series-tips {
    background: rgba(12, 61, 84, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.series-tips thead {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
    border-bottom: 2px solid #ef4444;
}

.series-tips thead th {
    padding: 15px 12px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #ef4444;
}

.series-tips tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.series-tips tbody tr:hover {
    background: rgba(239, 68, 68, 0.08);
}

.series-tips td {
    padding: 15px 12px;
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    color: var(--sct-text-primary);
}

.step-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.result-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 5px;
}

.result-badge.won {
    background: rgba(74, 222, 128, 0.2);
    color: var(--sct-win);
}

.result-badge.lost {
    background: rgba(248, 113, 113, 0.2);
    color: var(--sct-lose);
}

.result-badge.wait {
    background: rgba(255, 255, 255, 0.1);
    color: var(--sct-text-secondary);
}

/* ==========================================================================
   Common Table Styles
   ========================================================================== */
.date-time {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.date-time .date {
    font-weight: 700;
    color: var(--sct-primary);
    font-size: 13px;
}

.date-time .time {
    color: var(--sct-text-secondary);
    font-size: 12px;
}

.league-name {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.match-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.match-info .home-team,
.match-info .away-team {
    font-weight: 600;
}

.match-info .vs {
    color: var(--sct-text-secondary);
    font-size: 12px;
}

.tip-prediction {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 210, 89, 0.15);
    border: 1px solid rgba(255, 210, 89, 0.3);
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    color: var(--sct-primary);
    text-transform: uppercase;
}

.tip-odds {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
}

.score-result {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
}

.score-sep {
    color: var(--sct-text-secondary);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.status-badge.status-win {
    background: rgba(74, 222, 128, 0.2);
    color: var(--sct-win);
    border: 1px solid rgba(74, 222, 128, 0.4);
}

.status-badge.status-lose {
    background: rgba(248, 113, 113, 0.2);
    color: var(--sct-lose);
    border: 1px solid rgba(248, 113, 113, 0.4);
}

.status-badge.status-wait {
    background: rgba(255, 255, 255, 0.1);
    color: var(--sct-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Free Tips Page Styles
   ========================================================================== */
.free-tips-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(12, 61, 84, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.free-tips-table thead {
    background: linear-gradient(135deg, rgba(255, 210, 89, 0.2) 0%, rgba(255, 210, 89, 0.1) 100%);
    border-bottom: 2px solid var(--sct-primary);
}

.free-tips-table thead th {
    padding: 15px 12px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--sct-primary);
}

.free-tips-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.free-tips-table tbody tr:hover {
    background: rgba(255, 210, 89, 0.08);
}

.free-tips-table tbody tr.status-win {
    background: rgba(74, 222, 128, 0.08);
}

.free-tips-table tbody tr.status-lose {
    background: rgba(248, 113, 113, 0.08);
}

.free-tips-table tbody tr.status-draw {
    background: rgba(251, 191, 36, 0.08);
}

.free-tips-table td {
    padding: 15px 12px;
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    color: var(--sct-text-primary);
}

/* ==========================================================================
   CTA Section - VIP Membership
   ========================================================================== */
.cta-section {
    margin: 60px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, #ffd259 0%, #ffb800 100%);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(255, 210, 89, 0.3);
}

.cta-section .sec-title h2 {
    color: #000;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.cta-highlight {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 30px;
    background: #000;
    color: #ffd259;
    border-radius: 8px;
    font-size: 32px;
}

.cta-box {
    margin-top: 40px;
}

.cta-content {
    margin-bottom: 30px;
}

.ads-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ads-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ads-list li.header h3 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.ads-list li i {
    font-size: 18px;
    flex-shrink: 0;
}

.ads-list li .fa-check {
    color: #000;
}

.ads-list li .fa-circle {
    color: #000;
    font-size: 8px;
}

.ads-list.list-source {
    padding-left: 20px;
}

.cta-button {
    text-align: center;
    margin-top: 30px;
}

.btn3 {
    display: inline-block;
    padding: 18px 50px;
    background: #000;
    color: #ffd259;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.btn3:hover {
    background: transparent;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.view_more_social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(0, 0, 0, 0.2);
    font-size: 16px;
    color: #000;
}

.view_more_social a {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
}

.view_more_social a:hover {
    text-decoration: none;
}

/* ==========================================================================
   Authentication Section - 认证模块
   ========================================================================== */
.st-auth-section {
    background: #0b0b0b;
    padding: 60px 0;
    margin-top: 20px;
    border-radius: 12px;
}

.st-auth-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.st-auth-section .col-md-4 {
    padding: 20px;
}

.st-auth-section .col-md-8 {
    padding: 20px;
}

.hm-txt-ttl {
    color: #ffcc00;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.st-auth-section p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.aut-logo {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.aut-logo li {
    list-style: none;
}

.aut-logo img {
    filter: grayscale(1) brightness(1.5);
    max-width: 120px;
    transition: all 0.3s ease;
}

.aut-logo img:hover {
    filter: grayscale(0) brightness(1);
    transform: scale(1.05);
}

.auth-bg-box {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(255, 204, 0, 0.05) 100%);
    border-radius: 15px;
    padding: 60px 20px;
    border: 1px solid #333;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ho-ser {
    text-align: center;
    width: 100%;
}

.hm-txt-red {
    color: #ffcc00;
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.ho-ser > p.text-center {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 30px;
}

.tipster-point {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tipster-point li {
    list-style: none;
}

.nw-read-butt, .nw-yellow-butt {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    margin: 5px;
    font-size: 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nw-read-butt {
    background: #ffcc00;
    color: #000;
    border: 2px solid #ffcc00;
}

.nw-read-butt:hover {
    background: transparent;
    color: #ffcc00;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 204, 0, 0.4);
}

.nw-yellow-butt {
    border: 2px solid #ffcc00;
    color: #ffcc00;
    background: transparent;
}

.nw-yellow-butt:hover {
    background: #ffcc00;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 204, 0, 0.4);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .st-auth-section {
        padding: 40px 15px;
    }
    
    .st-auth-section .row {
        flex-direction: column;
    }
    
    .st-auth-section .col-md-4,
    .st-auth-section .col-md-8 {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .home-text-box {
        margin-bottom: 30px;
    }
    
    .hm-txt-ttl {
        font-size: 20px;
    }
    
    .auth-bg-box {
        padding: 40px 15px;
        min-height: auto;
    }
    
    .hm-txt-red {
        font-size: 20px;
    }
    
    .tipster-point {
        flex-direction: column;
        align-items: center;
    }
    
    .nw-read-butt, .nw-yellow-butt {
        width: 100%;
        text-align: center;
    }
}
