/* Draft Picks Page */
.info-banner {
    background-color: var(--bg-charcoal);
    border: var(--border-width-thick) solid var(--primary-red);
    color: var(--text-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: var(--text-xl);
    color: white;
}

.info-content {
    flex: 1;
    font-family: var(--font-body);
}

.info-content strong {
    color: var(--accent-yellow);
}

.round-section {
    margin-bottom: var(--space-2xl);
}

.round-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: var(--border-width) solid var(--primary-red);
}

.round-header h3 {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 2px;
}

.picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: var(--space-md);
}

.pick-card {
    background-color: var(--bg-charcoal);
    border: var(--border-width) solid var(--primary-red);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-fast);
}

.pick-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
}

.pick-number {
    font-family: var(--font-mono);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: var(--space-sm);
}

.pick-owner {
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}
