/* NFL Bot Dashboard - Original Design Styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    animation: none !important;
    transition: none !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    color: #ffffff;
    overflow-x: hidden;
}

.main-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}

.header {
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bankroll-input-section {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bankroll-input-section h2 {
    color: #00ff88;
    margin-bottom: 20px;
    text-align: center;
}

.bankroll-form {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input-group label {
    font-size: 0.9rem;
    color: #ccc;
}

.input-group input {
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.1rem;
    width: 180px;
}

.input-group input:focus {
    outline: none;
    border-color: #00ff88;
}

/* Risk Dropdown Styling */
.Select-control {
    background: rgba(40, 44, 52, 0.9) !important;
    border: 1px solid rgba(0, 255, 136, 0.5) !important;
    border-radius: 8px !important;
    width: 120px !important;
    height: 38px !important;
}

.Select-value {
    color: #ffffff !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}

.bet-recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.bet-size-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bet-size-card h4 {
    color: #00ff88;
    margin-bottom: 10px;
}

.picks-section {
    margin-top: 30px;
}

.picks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.picks-header h2 {
    color: #00ff88;
    font-size: 2rem;
}

.picks-count {
    background: #00ff88;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
}

.picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.pick-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.pick-card.high-confidence {
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.pick-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.pick-header-left {
    display: flex;
    gap: 10px;
    align-items: center;
}

.date-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: bold;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.week-badge {
    background: rgba(52, 152, 219, 0.3);
    color: #3498db;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid #3498db;
}

.sport-badge {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.sport-badge.nfl { background: #ff6b6b; color: white; }
.sport-badge.ncaa { background: #3498db; color: white; }
.sport-badge.mlb { background: #00cc96; color: white; }

.confidence-badge {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    background: #00ff88;
    color: #000;
}

.game-info {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.pick-details {
    font-size: 1.4rem;
    color: #00ff88;
    font-weight: bold;
    margin-bottom: 15px;
}

.pick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: bold;
    color: #00ff88;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 5px;
}

.status-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-active { background: #00ff88; }
.status-pending { background: #ffb347; }
.status-complete { background: #3498db; }

.time-info {
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 10px;
}

.no-scroll {
    overflow: hidden !important;
    user-select: none !important;
}

/* Tab System */
.tab-container {
    margin-top: 30px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
}

.tab-button {
    padding: 12px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.tab-button.active {
    background: linear-gradient(45deg, #00ff88, #00cc96);
    color: #000;
    border-color: #00ff88;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Prop Bet Specific Styling */
.prop-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    margin-bottom: 20px;
}

.prop-card.high-value {
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.prop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.player-info {
    font-size: 1.3rem;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 5px;
}

.team-info {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 10px;
}

.prop-type {
    background: rgba(52, 152, 219, 0.3);
    color: #3498db;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.prop-line-section {
    margin: 15px 0;
}

.prop-line-main {
    font-size: 1.4rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 8px;
}

.betting-line-display {
    font-size: 1.1rem;
    color: #00ff88;
    font-weight: bold;
    background: rgba(0, 255, 136, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.reasoning {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    font-style: italic;
    color: #ccc;
    margin-top: 15px;
    border-left: 4px solid #00ff88;
}

/* Enhanced Analytics Styles */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.analytics-section {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.analytics-title {
    color: #00ff9d;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 157, 0.3);
    padding-bottom: 10px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.metric-item {
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.metric-value.positive {
    color: #00ff9d;
}

.metric-value.neutral {
    color: #ffb347;
}

.metric-value.negative {
    color: #ff6b6b;
}

.metric-label {
    font-size: 12px;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Props Tab Styling */
.props-tab-content {
    margin-top: 20px;
}

.props-quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.quick-stat-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 136, 0.4);
}

.quick-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.quick-stat-label {
    font-size: 14px;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Filters Section */
.filters-section {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 150px;
}

.filter-label {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 600;
}

.filter-dropdown .Select-control {
    background: rgba(40, 44, 52, 0.9) !important;
    border: 1px solid rgba(0, 255, 136, 0.5) !important;
    border-radius: 8px !important;
    min-height: 38px !important;
}

.filter-dropdown .Select-value {
    color: #ffffff !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}

/* Enhanced Prop Cards */
.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.enhanced-individual-prop-card {
    background: linear-gradient(135deg,
        rgba(20, 25, 35, 0.95) 0%,
        rgba(30, 40, 55, 0.9) 50%,
        rgba(25, 35, 50, 0.95) 100%);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 255, 136, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.enhanced-individual-prop-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 6px 20px rgba(0, 255, 136, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.prop-card-header-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.prop-player-name-enhanced {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.confidence-badge-enhanced {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.9) 0%, rgba(0, 200, 100, 0.9) 100%);
    color: #000000;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
    min-width: 60px;
    text-align: center;
}

.confidence-badge-enhanced.high-confidence {
    background: linear-gradient(135deg, rgba(0, 255, 136, 1) 0%, rgba(0, 220, 120, 1) 100%);
    animation: confidencePulse 2s ease-in-out infinite alternate;
}

@keyframes confidencePulse {
    0% { box-shadow: 0 2px 8px rgba(0, 255, 136, 0.3); }
    100% { box-shadow: 0 2px 15px rgba(0, 255, 136, 0.6); }
}

/* Platform Information */
.platform-info-section {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-title {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.platform-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-info-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 136, 0.4);
}

.platform-name {
    color: #00ff88;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.platform-desc {
    color: #cccccc;
    font-size: 14px;
}

/* Portfolio/Analytics Tab Styling */
.portfolio-tab-content {
    margin-top: 20px;
}

.analytics-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.analytics-section {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(5px);
    margin-bottom: 20px;
}

.section-title {
    color: #00ff9d;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 157, 0.3);
    padding-bottom: 10px;
}

.subsection-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid #00ff9d;
}

/* Risk Analysis Styling */
.detailed-risk-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.risk-overview {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-score-display {
    text-align: center;
}

.metric-value-large {
    font-size: 48px;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 8px;
}

.metric-label-large {
    font-size: 14px;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.risk-level-display {
    text-align: center;
}

.risk-level-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.risk-level-badge.low {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid #00ff88;
}

.risk-level-badge.medium {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.risk-level-badge.high {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

.risk-breakdown {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-recommendations {
    background: rgba(0, 255, 136, 0.05);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

/* Performance Trends Styling */
.performance-trends-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-performance, .confidence-analysis, .sport-performance {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trend-recommendations {
    background: rgba(0, 255, 136, 0.05);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

/* Market Intelligence Styling */
.market-intelligence-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.market-overview {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.efficiency-display {
    text-align: center;
}

.efficiency-status {
    text-align: center;
}

.efficiency-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.efficiency-badge.efficient {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid #00ff88;
}

.efficiency-badge.neutral {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.efficiency-badge.inefficient {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

.value-opportunities, .market-recommendations {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Strategy Recommendations Styling */
.strategy-recommendations-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benchmark-comparison {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.strategy-insights {
    background: rgba(0, 255, 136, 0.05);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.strategy-insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.strategy-insight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.insight-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00ff88;
}

.actionable-section {
    background: rgba(0, 255, 136, 0.05);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

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

.actionable-item {
    padding: 10px;
    margin: 8px 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 4px solid #00ff88;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

/* Analytics Controls */
.analytics-controls {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
}

.control-label {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 600;
}

.timeframe-dropdown .Select-control {
    background: rgba(40, 44, 52, 0.9) !important;
    border: 1px solid rgba(0, 255, 136, 0.5) !important;
    border-radius: 8px !important;
    min-height: 38px !important;
}

.risk-slider {
    margin-top: 10px;
}

.risk-slider .rc-slider-track {
    background: linear-gradient(90deg, #00ff88, #00cc96) !important;
}

.risk-slider .rc-slider-handle {
    border: 2px solid #00ff88 !important;
    background: #ffffff !important;
}

/* Recommendations Lists */
.recommendations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommendation-item {
    padding: 10px;
    margin: 8px 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 4px solid #00ff88;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

/* Error and No Data States */
.no-data, .error-message {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    font-size: 16px;
}

.error-message {
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.3);
}

.no-props-container {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.no-props-message {
    color: #00ff88;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.no-props-subtitle {
    color: #cccccc;
    font-size: 16px;
}

/* Enhanced Analytics Grid */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.analytics-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.analytics-card-wide {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(5px);
    grid-column: span 2;
}

.analytics-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .picks-grid {
        grid-template-columns: 1fr;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .filters-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .analytics-controls {
        flex-direction: column;
        gap: 20px;
    }
    
    .props-quick-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .analytics-card-wide {
        grid-column: span 1;
    }
    
    .analytics-row {
        grid-template-columns: 1fr;
    }
    
    .risk-overview, .market-overview {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .strategy-insights-grid {
        grid-template-columns: 1fr;
    }
}
