﻿/* Modern Channel Page Styles */

.page-channel {
    max-width: 1000px;
    margin: 0 auto;
}

/* Channel Header Card */
.channel-header-card {
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.channel-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.channel-hero {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.channel-icon-hero {
    font-size: 4rem;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.channel-title-section {
    flex: 1;
}

.channel-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.channel-description {
    margin: 0;
    color: #666;
    font-size: 1.125rem;
    line-height: 1.6;
}

.channel-meta-badges {
    display: flex;
    gap: 0.75rem;
}

.channel-tier-badge {
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.tier-basic {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.tier-intermediate {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.tier-vip {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000;
}

/* Picks Section */
.picks-section {
    margin-top: 2rem;
}

.picks-header {
    margin-bottom: 1.5rem;
}

.picks-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.picks-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.filter-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 0.5rem 1rem;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .filter-pill:hover {
        border-color: #667eea;
        background: #f5f7fa;
    }

    .filter-pill.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-color: transparent;
    }

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

    .status-dot.pending {
        background: #fbbf24;
    }

    .status-dot.won {
        background: #22c55e;
    }

    .status-dot.lost {
        background: #ef4444;
    }

/* Bet Slip Cards - Modern Design */
.bet-slips-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bet-slip-card-modern {
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
}

    .bet-slip-card-modern:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
        border-color: rgba(102, 126, 234, 0.2);
    }

/* Bet Header */
.bet-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.bet-tags-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.bet-tag {
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.sport-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.type-tag {
    background: #f5f7fa;
    color: #666;
    border: 1px solid #e0e0e0;
}

.bet-status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fbbf24;
}

.status-won {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #22c55e;
}

.status-lost {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.status-push {
    background: #e5e7eb;
    color: #374151;
    border: 1px solid #9ca3af;
}

/* Game Section */
.bet-game-section {
    margin-bottom: 1.5rem;
}

.bet-game-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
}

.bet-matchup {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Pick Highlight Box */
.bet-pick-highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: white;
}

.pick-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.pick-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.pick-odds {
    font-weight: 700;
    font-size: 1.125rem;
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.pick-value-main {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Analysis Section */
.bet-analysis-section {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.analysis-title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: #667eea;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.analysis-text {
    color: #374151;
    line-height: 1.7;
    margin: 0;
    font-size: 0.9375rem;
}

/* Image Container */
.bet-image-container {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.bet-slip-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Bet Footer Modern */
.bet-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    flex-wrap: wrap;
    gap: 1rem;
}

.bet-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.author-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1a1a1a;
}

.post-time {
    font-size: 0.75rem;
    color: #9ca3af;
}

.game-time-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fef3c7;
    color: #92400e;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
}

    .game-time-badge i {
        color: #f59e0b;
    }

/* Empty State */
.empty-state-card {
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 16px;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.empty-state-card p {
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .channel-header-content {
        flex-direction: column;
    }

    .channel-hero {
        flex-direction: column;
        text-align: center;
    }

    .channel-icon-hero {
        font-size: 3rem;
    }

    .channel-title {
        font-size: 1.5rem;
    }

    .picks-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .bet-slip-card-modern {
        padding: 1.5rem;
    }

    .pick-value-main {
        font-size: 1.375rem;
    }
}
