/* ============================================
   Teams Landing Page Styles (Task 486)
   ============================================ */

.shamlock-teams-landing {
    background: #f8f9fa;
    padding-bottom: 3rem;
}

.teams-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero */
.teams-hero-section {
    padding: 2rem 0 1rem;
    text-align: center;
}

.teams-page-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.teams-page-title .accent {
    color: #10b981;
}

/* Conference Filter */
.teams-filter-section {
    padding: 0 0 1.5rem;
}

.teams-filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.teams-filter-btn {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.teams-filter-btn:hover {
    border-color: #10b981;
    color: #10b981;
}

.teams-filter-btn.active {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

/* Conference Groups */
.teams-conference-group {
    margin-bottom: 2rem;
}

.teams-conference-header {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #10b981;
}

/* Team Cards Grid */
.teams-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.875rem;
}

.team-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}

.team-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.team-card-accent {
    height: 3px;
    background: var(--card-accent, #10b981);
}

.team-card-body {
    padding: 1rem 0.75rem;
    text-align: center;
}

.team-card-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 0.625rem;
}

.team-card-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.375rem;
    line-height: 1.2;
}

.team-card-record {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.375rem;
}

.team-card-pct {
    color: #6b7280;
    font-weight: 400;
}

.team-card-sbr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.team-card-sbr-rank {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #10b981;
}

.team-card-sbr-label {
    font-size: 0.625rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
}

/* Empty State */
.teams-empty-state {
    grid-column: 1 / -1;
    padding: 3rem;
    text-align: center;
}

.teams-empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.teams-empty-state h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin: 0 0 0.5rem;
}

.teams-empty-state p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Skeleton */
.skeleton-teams-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.875rem;
}

.skeleton-team-card {
    height: 180px;
    border-radius: 8px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Responsive */
@media (max-width: 1024px) {
    .teams-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .skeleton-teams-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .teams-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .skeleton-teams-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .teams-page-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .teams-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .skeleton-teams-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-card-logo {
        width: 48px;
        height: 48px;
    }

    .team-card-name {
        font-size: 0.8125rem;
    }
}
