/* League Navigation Component */
.league-navigation {
    padding: 64px 0;
}

.league-header {
    text-align: center;
    margin-bottom: 48px;
}

.league-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #000000;
    margin: 0 0 8px 0;
}

.league-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
}

/* League Buttons Grid */
.league-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.league-button {
    display: flex;
    align-items: center;
    padding: 24px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    min-height: 80px;
}

.league-button:hover {
    border-color: #16A34A;
    background: #f8fffe;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.1);
}

.league-button:focus {
    outline: none;
    border-color: #16A34A;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.league-button:active {
    transform: translateY(0);
}

/* League Button Icon */
.league-button__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.league-button:hover .league-button__icon {
    background: #dcfce7;
}

.league-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

/* League Button Content */
.league-button__content {
    flex: 1;
    text-align: left;
}

.league-button__name {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #000000;
    margin: 0 0 4px 0;
}

.league-button__description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #6b7280;
    margin: 0;
}

/* League Button Arrow */
.league-button__arrow {
    flex-shrink: 0;
    margin-left: 16px;
    color: #9ca3af;
    transition: all 0.2s ease;
}

.league-button:hover .league-button__arrow {
    color: #16A34A;
    transform: translateX(4px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .league-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 800px;
    }
    
    .league-button {
        padding: 32px 24px;
        min-height: 120px;
    }
    
    .league-button__icon {
        width: 56px;
        height: 56px;
        margin-right: 20px;
    }
    
    .league-icon {
        width: 28px;
        height: 28px;
    }
    
    .league-icon--football::before,
    .league-icon--basketball::before,
    .league-icon--baseball::before {
        font-size: 28px;
    }
    
    .league-button__name {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .league-button__description {
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .league-navigation {
        padding: 80px 0;
    }
    
    .league-header {
        margin-bottom: 64px;
    }
    
    .league-title {
        font-size: 28px;
    }
    
    .league-subtitle {
        font-size: 18px;
    }
} 