                	/* Picks Success Tracking Section */
.pick-parent-success-tracking {
    /*background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);*/
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.success-tracking-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.success-tracking-header .lead {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 500;
}

/* Overall Performance Grid */
.overall-performance-grid {
    margin: 3rem 0;
}

.performance-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.performance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6, #06b6d4);
}

.performance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.performance-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.performance-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    display: block;
}

.performance-label {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.performance-period {
    font-size: 0.875rem;
    color: #64748b;
}

/* Sport Performance Section */
.sport-performance-section h3,
.monthly-performance h3,
.bet-type-performance h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
}

.sport-performance-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.sport-performance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.sport-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.sport-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 0.75rem;
}

.sport-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.record {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.win-rate-bar {
    background: #e5e7eb;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.win-rate-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #06d6a0);
    width: 0%;
    transition: width 1.5s ease-in-out;
    border-radius: 4px;
}

.sport-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.win-percentage {
    font-weight: 600;
    color: #059669;
}

.roi {
    font-weight: 600;
    color: #1e3a8a;
}

/* Monthly Performance Chart */
.monthly-performance {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.chart-container {
    position: relative;
    height: 300px;
    margin-top: 1rem;
}

.chart-wrapper {
    position: relative;
    height: 100%;
}

/* Bet Type Performance */
.bet-type-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.bet-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.bet-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.bet-type-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.bet-type-icon {
    font-size: 1.5rem;
}

.big-number {
    font-size: 2rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 0.5rem;
}

.bet-type-card .record {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.bet-type-card .roi {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e3a8a;
}

/* Trust Indicators */
.trust-indicators {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 16px;
    padding: 2.5rem;
    color: white;
    margin-top: 2rem;
}

.trust-container h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-feature i {
    font-size: 1.25rem;
    color: #fbbf24;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.trust-feature strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.trust-feature span {
    color: #e5e7eb;
    font-size: 0.875rem;
}

.verification-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.verification-badge i {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.badge-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-text span {
    font-size: 0.75rem;
    color: #e5e7eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pick-parent-success-tracking {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .success-tracking-header h2 {
        font-size: 2rem;
    }
    
    .performance-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .performance-number {
        font-size: 2rem;
    }
    
    .sport-performance-card,
    .bet-type-card {
        margin-bottom: 1rem;
    }
    
    .trust-features {
        margin-bottom: 2rem;
    }
    
    .trust-feature {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .verification-badge {
        width: 100px;
        height: 100px;
    }
    
    .chart-container {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .performance-number {
        font-size: 1.75rem;
    }
    
    .big-number {
        font-size: 1.5rem;
    }
    
    .sport-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .sport-details {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
}

/* REDESIGN */
.pick-parent-success-tracking {
    margin-top: 0 !important;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%) !important;
}
.success-tracking-header h2 {
    margin-top: 0px;
    font-size: 32px;
}
.performance-card {
    background: white;
}
.win-rate-fill {
    background: linear-gradient(90deg, #fd8948, #FF5C00) !important;
}
.win-percentage {
    color: #FF5C00 !important;
    color: #052545!important;
}
.roi {
    color: #FF5C00 !important;
    color: #052545!important;
}
.bet-type-card .bet-type-stats .big-number {
    color: #FF5C00 !important;
}
.sport-performance-section h3, .monthly-performance h3, .bet-type-performance h3 {
    color: #052545!important;
}
.success-tracking-header h2 {
    background: linear-gradient(135deg, #fd8948, #FF5C00) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.bet-type-card .bet-type-stats .roi {
    color: #052545!important;
}
.bet-type-card .bet-type-stats .sport-details .roi {
    color: #052545!important;
}
.performance-number {
    color: #052545!important;
}
.performance-icon {
    background: linear-gradient(90deg, #fd8948, #FF5C00) !important;
}
.trust-indicators {
    background: linear-gradient(90deg, #fd8948, #FF5C00) !important;
}
.performance-card::before {
    background: linear-gradient(90deg, #fd8948, #FF5C00) !important;
}
@media (max-width: 480px) {
    .performance-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
}
